ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilMailValueObject.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
24
class
ilMailValueObject
25
{
26
private
string
$recipients
;
27
private
string
$recipientsCC
;
28
private
string
$recipientsBCC
;
29
private
string
$subject
;
30
private
string
$body
;
32
private
array
$attachments
;
33
private
bool
$usePlaceholders
;
34
private
bool
$saveInSentBox
;
35
private
string
$from
;
36
41
public
function
__construct
(
42
string
$from,
43
string
$recipients,
44
string
$recipientsCC,
45
string
$recipientsBCC,
46
string
$subject,
47
string
$body,
48
array $attachments,
49
bool
$usePlaceholders =
false
,
50
bool
$saveInSentBox =
false
51
) {
52
if
(
ilStr::strLen
($subject) > 255) {
53
throw
new
InvalidArgumentException
(
'Subject must not be longer than 255 characters'
);
54
}
55
56
$this->from =
$from
;
57
$this->recipients =
$recipients
;
58
$this->recipientsCC =
$recipientsCC
;
59
$this->recipientsBCC =
$recipientsBCC
;
60
$this->subject =
$subject
;
61
$this->body =
$body
;
62
$this->attachments = array_filter(array_map(
'trim'
, $attachments));
63
$this->usePlaceholders =
$usePlaceholders
;
64
$this->saveInSentBox =
$saveInSentBox
;
65
}
66
67
public
function
getRecipients
(): string
68
{
69
return
$this->recipients
;
70
}
71
72
public
function
getRecipientsCC
(): string
73
{
74
return
$this->recipientsCC
;
75
}
76
77
public
function
getRecipientsBCC
(): string
78
{
79
return
$this->recipientsBCC
;
80
}
81
82
public
function
getSubject
(): string
83
{
84
return
$this->subject
;
85
}
86
87
public
function
getBody
(): string
88
{
89
return
$this->body
;
90
}
91
95
public
function
getAttachments
(): array
96
{
97
return
$this->attachments
;
98
}
99
100
public
function
isUsingPlaceholders
(): bool
101
{
102
return
$this->usePlaceholders
;
103
}
104
105
public
function
shouldSaveInSentBox
(): bool
106
{
107
return
$this->saveInSentBox
;
108
}
109
110
public
function
getFrom
(): string
111
{
112
return
$this->from
;
113
}
114
}
ilMailValueObject\$body
string $body
Definition:
class.ilMailValueObject.php:30
ilMailValueObject\$attachments
array $attachments
Definition:
class.ilMailValueObject.php:32
ilMailValueObject\$subject
string $subject
Definition:
class.ilMailValueObject.php:29
ilMailValueObject\$saveInSentBox
bool $saveInSentBox
Definition:
class.ilMailValueObject.php:34
ilMailValueObject\getSubject
getSubject()
Definition:
class.ilMailValueObject.php:82
ilMailValueObject\getAttachments
getAttachments()
Definition:
class.ilMailValueObject.php:95
ilMailValueObject\$recipients
string $recipients
Definition:
class.ilMailValueObject.php:26
ilMailValueObject\shouldSaveInSentBox
shouldSaveInSentBox()
Definition:
class.ilMailValueObject.php:105
ilMailValueObject\getBody
getBody()
Definition:
class.ilMailValueObject.php:87
ilMailValueObject\getRecipientsCC
getRecipientsCC()
Definition:
class.ilMailValueObject.php:72
ilMailValueObject\$from
string $from
Definition:
class.ilMailValueObject.php:35
ilMailValueObject\getRecipientsBCC
getRecipientsBCC()
Definition:
class.ilMailValueObject.php:77
ilStr\strLen
static strLen(string $a_string)
Definition:
class.ilStr.php:63
ilMailValueObject\$usePlaceholders
bool $usePlaceholders
Definition:
class.ilMailValueObject.php:33
ilMailValueObject\$recipientsBCC
string $recipientsBCC
Definition:
class.ilMailValueObject.php:28
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:41
ilMailValueObject\$recipientsCC
string $recipientsCC
Definition:
class.ilMailValueObject.php:27
ilMailValueObject
Definition:
class.ilMailValueObject.php:24
ilMailValueObject\getRecipients
getRecipients()
Definition:
class.ilMailValueObject.php:67
InvalidArgumentException
ilMailValueObject\getFrom
getFrom()
Definition:
class.ilMailValueObject.php:110
ilMailValueObject\isUsingPlaceholders
isUsingPlaceholders()
Definition:
class.ilMailValueObject.php:100
Services
Mail
classes
Object
class.ilMailValueObject.php
Generated on Thu Apr 3 2025 22:02:25 for ILIAS by
1.8.13 (using
Doxyfile
)