ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ilMailMimeSenderSystem Class Reference
+ Inheritance diagram for ilMailMimeSenderSystem:
+ Collaboration diagram for ilMailMimeSenderSystem:

Public Member Functions

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

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

ilMailMimeSenderSystem::__construct ( protected ilSetting  $settings)

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

24  {
25  }

Member Function Documentation

◆ getEnvelopFromAddress()

ilMailMimeSenderSystem::getEnvelopFromAddress ( )

Implements ilMailMimeSender.

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

References ILIAS\Repository\settings().

47  : string
48  {
49  return $this->settings->get('mail_system_sys_env_from_addr', '');
50  }
+ Here is the call graph for this function:

◆ getFromAddress()

ilMailMimeSenderSystem::getFromAddress ( )

Implements ilMailMimeSender.

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

References ILIAS\Repository\settings().

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

◆ getFromName()

ilMailMimeSenderSystem::getFromName ( )

Implements ilMailMimeSender.

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

References ILIAS\Repository\settings().

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

◆ getReplyToAddress()

ilMailMimeSenderSystem::getReplyToAddress ( )

Implements ilMailMimeSender.

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

References ILIAS\Repository\settings().

32  : string
33  {
34  return $this->settings->get('mail_system_sys_reply_to_addr', '');
35  }
+ Here is the call graph for this function:

◆ getReplyToName()

ilMailMimeSenderSystem::getReplyToName ( )

Implements ilMailMimeSender.

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

37  : string
38  {
39  return '';
40  }

◆ hasEnvelopFromAddress()

ilMailMimeSenderSystem::hasEnvelopFromAddress ( )

Implements ilMailMimeSender.

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

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

42  : bool
43  {
44  return $this->settings->get('mail_system_sys_env_from_addr', '') !== '' && $this->settings->get('mail_system_sys_env_from_addr', '') !== null;
45  }
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 27 of file class.ilMailMimeSenderSystem.php.

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

27  : bool
28  {
29  return $this->settings->get('mail_system_sys_reply_to_addr', '') !== '' && $this->settings->get('mail_system_sys_reply_to_addr', '') !== null;
30  }
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: