ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilMailMimeSenderSystem.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilMailMimeSenderSystem
implements
ilMailMimeSender
22
{
23
public
function
__construct
(
protected
ilSetting
$settings)
24
{
25
}
26
27
public
function
hasReplyToAddress
(): bool
28
{
29
return
$this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
) !==
''
&& $this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
) !==
null
;
30
}
31
32
public
function
getReplyToAddress
(): string
33
{
34
return
$this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
);
35
}
36
37
public
function
getReplyToName
(): string
38
{
39
return
''
;
40
}
41
42
public
function
hasEnvelopFromAddress
(): bool
43
{
44
return
$this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
) !==
''
&& $this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
) !==
null
;
45
}
46
47
public
function
getEnvelopFromAddress
(): string
48
{
49
return
$this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
);
50
}
51
52
public
function
getFromAddress
(): string
53
{
54
return
$this->
settings
->get(
'mail_system_sys_from_addr'
,
''
);
55
}
56
57
public
function
getFromName
(): string
58
{
59
return
$this->
settings
->get(
'mail_system_sys_from_name'
,
''
);
60
}
61
}
ilMailMimeSenderSystem\getEnvelopFromAddress
getEnvelopFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:47
ilMailMimeSenderSystem\getFromName
getFromName()
Definition:
class.ilMailMimeSenderSystem.php:57
ilMailMimeSenderSystem\__construct
__construct(protected ilSetting $settings)
Definition:
class.ilMailMimeSenderSystem.php:23
ilMailMimeSenderSystem\getReplyToAddress
getReplyToAddress()
Definition:
class.ilMailMimeSenderSystem.php:32
ilMailMimeSenderSystem
Definition:
class.ilMailMimeSenderSystem.php:21
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
ilMailMimeSenderSystem\getReplyToName
getReplyToName()
Definition:
class.ilMailMimeSenderSystem.php:37
ilMailMimeSender
Definition:
interface.ilMailMimeSender.php:21
ILIAS\Repository\settings
settings()
Definition:
trait.GlobalDICDomainServices.php:96
ilMailMimeSenderSystem\getFromAddress
getFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:52
ilMailMimeSenderSystem\hasEnvelopFromAddress
hasEnvelopFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:42
ilMailMimeSenderSystem\hasReplyToAddress
hasReplyToAddress()
Definition:
class.ilMailMimeSenderSystem.php:27
ilSetting
components
ILIAS
Mail
classes
Mime
Sender
class.ilMailMimeSenderSystem.php
Generated on Sun Aug 31 2025 23:03:19 for ILIAS by
1.8.13 (using
Doxyfile
)