ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilMailMimeSenderSystem.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilMailMimeSenderSystem
implements
ilMailMimeSender
9
{
11
protected
$settings
;
12
17
public
function
__construct
(
ilSetting
$settings
)
18
{
19
$this->
settings
=
$settings
;
20
}
21
25
public
function
hasReplyToAddress
() : bool
26
{
27
return
strlen($this->
settings
->get(
'mail_system_sys_reply_to_addr'
)) > 0;
28
}
29
33
public
function
getReplyToAddress
() : string
34
{
35
return
$this->
settings
->get(
'mail_system_sys_reply_to_addr'
,
''
);
36
}
37
41
public
function
getReplyToName
() : string
42
{
43
return
''
;
44
}
45
49
public
function
hasEnvelopFromAddress
() : bool
50
{
51
return
strlen($this->
settings
->get(
'mail_system_sys_env_from_addr'
)) > 0;
52
}
53
57
public
function
getEnvelopFromAddress
() : string
58
{
59
return
$this->
settings
->get(
'mail_system_sys_env_from_addr'
,
''
);
60
}
61
65
public
function
getFromAddress
() : string
66
{
67
return
$this->
settings
->get(
'mail_system_sys_from_addr'
,
''
);
68
}
69
73
public
function
getFromName
() : string
74
{
75
return
$this->
settings
->get(
'mail_system_sys_from_name'
,
''
);
76
}
77
}
settings
settings()
Definition:
settings.php:2
ilMailMimeSenderSystem\getEnvelopFromAddress
getEnvelopFromAddress()
string
Definition:
class.ilMailMimeSenderSystem.php:57
ilMailMimeSenderSystem\getFromName
getFromName()
string
Definition:
class.ilMailMimeSenderSystem.php:73
ilMailMimeSenderSystem\__construct
__construct(ilSetting $settings)
ilMailMimeSenderSystem constructor.
Definition:
class.ilMailMimeSenderSystem.php:17
ilMailMimeSenderSystem\getReplyToAddress
getReplyToAddress()
string
Definition:
class.ilMailMimeSenderSystem.php:33
ilMailMimeSenderSystem
Class ilMailMimeSenderSystem.
Definition:
class.ilMailMimeSenderSystem.php:8
ilMailMimeSenderSystem\getReplyToName
getReplyToName()
string
Definition:
class.ilMailMimeSenderSystem.php:41
ilMailMimeSender
Interface ilMailMimeTransport.
Definition:
interface.ilMailMimeSender.php:8
ilMailMimeSenderSystem\$settings
$settings
Definition:
class.ilMailMimeSenderSystem.php:11
ilMailMimeSenderSystem\getFromAddress
getFromAddress()
string
Definition:
class.ilMailMimeSenderSystem.php:65
ilMailMimeSenderSystem\hasEnvelopFromAddress
hasEnvelopFromAddress()
bool
Definition:
class.ilMailMimeSenderSystem.php:49
ilMailMimeSenderSystem\hasReplyToAddress
hasReplyToAddress()
bool
Definition:
class.ilMailMimeSenderSystem.php:25
ilSetting
Services
Mail
classes
Mime
Sender
class.ilMailMimeSenderSystem.php
Generated on Fri Apr 4 2025 20:01:26 for ILIAS by
1.8.13 (using
Doxyfile
)