ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilMailValueObject.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
7
class
ilMailValueObject
8
{
10
private
$recipients
;
11
13
private
$recipientsCC
;
14
16
private
$recipientsBCC
;
17
19
private
$subject
;
20
22
private
$body
;
23
25
private
$attachments
= [];
26
28
private
$usePlaceholders
;
29
31
private
$saveInSentBox
;
32
34
private
$from
;
35
47
public
function
__construct
(
48
string
$from
,
49
string
$recipients
,
50
string
$recipientsCC
,
51
string
$recipientsBCC
,
52
string
$subject
,
53
string
$body
,
54
array
$attachments
,
55
bool
$usePlaceholders
=
false
,
56
bool
$saveInSentBox
=
false
57
) {
58
$this->from =
$from
;
59
$this->recipients =
$recipients
;
60
$this->recipientsCC =
$recipientsCC
;
61
$this->recipientsBCC =
$recipientsBCC
;
62
$this->subject =
$subject
;
63
$this->body =
$body
;
64
$this->attachments = array_filter(array_map(
'trim'
, $attachments));
65
$this->usePlaceholders =
$usePlaceholders
;
66
$this->saveInSentBox =
$saveInSentBox
;
67
}
68
72
public
function
getRecipients
() : string
73
{
74
return
$this->recipients
;
75
}
76
80
public
function
getRecipientsCC
() : string
81
{
82
return
$this->recipientsCC
;
83
}
84
88
public
function
getRecipientsBCC
() : string
89
{
90
return
$this->recipientsBCC
;
91
}
92
96
public
function
getSubject
() : string
97
{
98
return
$this->subject
;
99
}
100
104
public
function
getBody
() : string
105
{
106
return
$this->body
;
107
}
108
112
public
function
getAttachments
() : array
113
{
114
return
$this->attachments
;
115
}
116
120
public
function
isUsingPlaceholders
() : bool
121
{
122
return
$this->usePlaceholders
;
123
}
124
128
public
function
shouldSaveInSentBox
() : bool
129
{
130
return
$this->saveInSentBox
;
131
}
132
136
public
function
getFrom
() : string
137
{
138
return
$this->from
;
139
}
140
}
ilMailValueObject\$subject
$subject
Definition:
class.ilMailValueObject.php:19
ilMailValueObject\$usePlaceholders
$usePlaceholders
Definition:
class.ilMailValueObject.php:28
ilMailValueObject\$recipients
$recipients
Definition:
class.ilMailValueObject.php:10
ilMailValueObject\getSubject
getSubject()
Definition:
class.ilMailValueObject.php:96
ilMailValueObject\$recipientsCC
$recipientsCC
Definition:
class.ilMailValueObject.php:13
ilMailValueObject\getAttachments
getAttachments()
Definition:
class.ilMailValueObject.php:112
ilMailValueObject\shouldSaveInSentBox
shouldSaveInSentBox()
Definition:
class.ilMailValueObject.php:128
ilMailValueObject\getBody
getBody()
Definition:
class.ilMailValueObject.php:104
ilMailValueObject\getRecipientsCC
getRecipientsCC()
Definition:
class.ilMailValueObject.php:80
ilMailValueObject\getRecipientsBCC
getRecipientsBCC()
Definition:
class.ilMailValueObject.php:88
ilMailValueObject\$saveInSentBox
$saveInSentBox
Definition:
class.ilMailValueObject.php:31
ilMailValueObject\__construct
__construct(string $from, string $recipients, string $recipientsCC, string $recipientsBCC, string $subject, string $body, array $attachments, bool $usePlaceholders=false, bool $saveInSentBox=false)
Definition:
class.ilMailValueObject.php:47
ilMailValueObject\$body
$body
Definition:
class.ilMailValueObject.php:22
ilMailValueObject
Definition:
class.ilMailValueObject.php:7
ilMailValueObject\getRecipients
getRecipients()
Definition:
class.ilMailValueObject.php:72
ilMailValueObject\$recipientsBCC
$recipientsBCC
Definition:
class.ilMailValueObject.php:16
ilMailValueObject\$attachments
$attachments
Definition:
class.ilMailValueObject.php:25
ilMailValueObject\$from
$from
Definition:
class.ilMailValueObject.php:34
ilMailValueObject\getFrom
getFrom()
Definition:
class.ilMailValueObject.php:136
ilMailValueObject\isUsingPlaceholders
isUsingPlaceholders()
Definition:
class.ilMailValueObject.php:120
Services
Mail
classes
Object
class.ilMailValueObject.php
Generated on Wed Apr 2 2025 21:01:31 for ILIAS by
1.8.13 (using
Doxyfile
)