ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailValueObject.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
27  private readonly array $attachments;
28 
33  public function __construct(
34  private readonly string $from,
35  private readonly string $recipients,
36  private readonly string $recipientsCC,
37  private readonly string $recipientsBCC,
38  private readonly string $subject,
39  private readonly string $body,
40  array $attachments,
41  private readonly bool $usePlaceholders = false,
42  private readonly bool $saveInSentBox = false
43  ) {
44  $this->attachments = array_filter(array_map('trim', $attachments));
45  if (ilStr::strLen($this->subject) > 255) {
46  throw new InvalidArgumentException('Subject must not be longer than 255 characters');
47  }
48  }
49 
50  public function getRecipients(): string
51  {
52  return $this->recipients;
53  }
54 
55  public function getRecipientsCC(): string
56  {
57  return $this->recipientsCC;
58  }
59 
60  public function getRecipientsBCC(): string
61  {
62  return $this->recipientsBCC;
63  }
64 
65  public function getSubject(): string
66  {
67  return $this->subject;
68  }
69 
70  public function getBody(): string
71  {
72  return $this->body;
73  }
74 
78  public function getAttachments(): array
79  {
80  return $this->attachments;
81  }
82 
83  public function isUsingPlaceholders(): bool
84  {
85  return $this->usePlaceholders;
86  }
87 
88  public function shouldSaveInSentBox(): bool
89  {
90  return $this->saveInSentBox;
91  }
92 
93  public function getFrom(): string
94  {
95  return $this->from;
96  }
97 }
static strLen(string $a_string)
Definition: class.ilStr.php:63
__construct(private readonly string $from, private readonly string $recipients, private readonly string $recipientsCC, private readonly string $recipientsBCC, private readonly string $subject, private readonly string $body, array $attachments, private readonly bool $usePlaceholders=false, private readonly bool $saveInSentBox=false)