ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilMailMimeSenderSystem.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilMailMimeSenderSystem
implements
ilMailMimeSender
26
{
27
public
function
__construct
(
protected
ilSetting
$settings)
28
{
29
}
30
31
public
function
hasReplyToAddress
(): bool
32
{
33
return
$this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
) !==
''
&& $this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
) !==
null
;
34
}
35
36
public
function
getReplyToAddress
(): string
37
{
38
return
$this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
);
39
}
40
41
public
function
getReplyToName
(): string
42
{
43
return
''
;
44
}
45
46
public
function
hasEnvelopFromAddress
(): bool
47
{
48
return
$this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
) !==
''
&& $this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
) !==
null
;
49
}
50
51
public
function
getEnvelopFromAddress
(): string
52
{
53
return
$this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
);
54
}
55
56
public
function
getFromAddress
(): string
57
{
58
return
$this->
settings
->get(
'mail_system_sys_from_addr'
,
''
);
59
}
60
61
public
function
getFromName
(): string
62
{
63
return
$this->
settings
->get(
'mail_system_sys_from_name'
,
''
);
64
}
65
}
ilMailMimeSenderSystem\getEnvelopFromAddress
getEnvelopFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:51
ilMailMimeSenderSystem\getFromName
getFromName()
Definition:
class.ilMailMimeSenderSystem.php:61
ilMailMimeSenderSystem\__construct
__construct(protected ilSetting $settings)
Definition:
class.ilMailMimeSenderSystem.php:27
ilMailMimeSenderSystem\getReplyToAddress
getReplyToAddress()
Definition:
class.ilMailMimeSenderSystem.php:36
ilMailMimeSenderSystem
Class ilMailMimeSenderSystem.
Definition:
class.ilMailMimeSenderSystem.php:25
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilMailMimeSenderSystem\getReplyToName
getReplyToName()
Definition:
class.ilMailMimeSenderSystem.php:41
ilMailMimeSender
Interface ilMailMimeTransport.
Definition:
interface.ilMailMimeSender.php:25
ILIAS\Repository\settings
settings()
Definition:
trait.GlobalDICDomainServices.php:96
ilMailMimeSenderSystem\getFromAddress
getFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:56
ilMailMimeSenderSystem\hasEnvelopFromAddress
hasEnvelopFromAddress()
Definition:
class.ilMailMimeSenderSystem.php:46
ilMailMimeSenderSystem\hasReplyToAddress
hasReplyToAddress()
Definition:
class.ilMailMimeSenderSystem.php:31
ilSetting
components
ILIAS
Mail
classes
Mime
Sender
class.ilMailMimeSenderSystem.php
Generated on Thu Apr 3 2025 23:03:16 for ILIAS by
1.8.13 (using
Doxyfile
)