ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilMailMimeSenderSystem Class Reference

Class ilMailMimeSenderSystem. More...

+ Inheritance diagram for ilMailMimeSenderSystem:
+ Collaboration diagram for ilMailMimeSenderSystem:

Public Member Functions

 __construct (protected ilSetting $settings)
 
 hasReplyToAddress ()
 
 getReplyToAddress ()
 
 getReplyToName ()
 
 hasEnvelopFromAddress ()
 
 getEnvelopFromAddress ()
 
 getFromAddress ()
 
 getFromName ()
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilMailMimeSenderSystem::__construct ( protected ilSetting  $settings)

Definition at line 27 of file class.ilMailMimeSenderSystem.php.

28  {
29  }

Member Function Documentation

◆ getEnvelopFromAddress()

ilMailMimeSenderSystem::getEnvelopFromAddress ( )

Implements ilMailMimeSender.

Definition at line 51 of file class.ilMailMimeSenderSystem.php.

References ILIAS\Repository\settings().

51  : string
52  {
53  return $this->settings->get('mail_system_sys_env_from_addr', '');
54  }
+ Here is the call graph for this function:

◆ getFromAddress()

ilMailMimeSenderSystem::getFromAddress ( )

Implements ilMailMimeSender.

Definition at line 56 of file class.ilMailMimeSenderSystem.php.

References ILIAS\Repository\settings().

56  : string
57  {
58  return $this->settings->get('mail_system_sys_from_addr', '');
59  }
+ Here is the call graph for this function:

◆ getFromName()

ilMailMimeSenderSystem::getFromName ( )

Implements ilMailMimeSender.

Definition at line 61 of file class.ilMailMimeSenderSystem.php.

References ILIAS\Repository\settings().

61  : string
62  {
63  return $this->settings->get('mail_system_sys_from_name', '');
64  }
+ Here is the call graph for this function:

◆ getReplyToAddress()

ilMailMimeSenderSystem::getReplyToAddress ( )

Implements ilMailMimeSender.

Definition at line 36 of file class.ilMailMimeSenderSystem.php.

References ILIAS\Repository\settings().

36  : string
37  {
38  return $this->settings->get('mail_system_sys_reply_to_addr', '');
39  }
+ Here is the call graph for this function:

◆ getReplyToName()

ilMailMimeSenderSystem::getReplyToName ( )

Implements ilMailMimeSender.

Definition at line 41 of file class.ilMailMimeSenderSystem.php.

41  : string
42  {
43  return '';
44  }

◆ hasEnvelopFromAddress()

ilMailMimeSenderSystem::hasEnvelopFromAddress ( )

Implements ilMailMimeSender.

Definition at line 46 of file class.ilMailMimeSenderSystem.php.

References null, and ILIAS\Repository\settings().

46  : bool
47  {
48  return $this->settings->get('mail_system_sys_env_from_addr', '') !== '' && $this->settings->get('mail_system_sys_env_from_addr', '') !== null;
49  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ hasReplyToAddress()

ilMailMimeSenderSystem::hasReplyToAddress ( )

Implements ilMailMimeSender.

Definition at line 31 of file class.ilMailMimeSenderSystem.php.

References null, and ILIAS\Repository\settings().

31  : bool
32  {
33  return $this->settings->get('mail_system_sys_reply_to_addr', '') !== '' && $this->settings->get('mail_system_sys_reply_to_addr', '') !== null;
34  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: