ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFormatMail.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 class ilFormatMail extends ilMail
26 {
27  public function formatReplyRecipientsForCC(): string
28  {
29  global $DIC;
30 
31  if (empty($this->mail_data)) {
32  return '';
33  }
34 
35  $newCC = [];
36 
37  $currentUserLogin = $DIC->user()->getLogin();
38 
39  foreach (explode(',', (string) $this->mail_data['rcp_to']) as $to) {
40  $to = trim($to);
41  if ($to !== '' && $currentUserLogin !== $to) {
42  $newCC[] = $to;
43  }
44  }
45 
46  foreach (explode(',', (string) $this->mail_data['rcp_cc']) as $cc) {
47  $cc = trim($cc);
48  if ($cc !== '' && $currentUserLogin !== $cc) {
49  $newCC[] = $cc;
50  }
51  }
52 
53  return $this->mail_data['rcp_cc'] = implode(', ', $newCC);
54  }
55 
56  public function formatReplyRecipient(): string
57  {
58  if (empty($this->mail_data)) {
59  return '';
60  }
61 
62  $user = new ilObjUser((int) $this->mail_data['sender_id']);
63  return $this->mail_data['rcp_to'] = $user->getLogin();
64  }
65 
69  public function appendSearchResult(array $a_names, string $a_type): array
70  {
71  $name_str = implode(',', $a_names);
72 
73  $key = 'rcp_to';
74  if ('cc' === $a_type) {
75  $key = 'rcp_cc';
76  } elseif ('bc' === $a_type) {
77  $key = 'rcp_bcc';
78  }
79 
80  if (!isset($this->mail_data[$key]) || !is_string($this->mail_data[$key])) {
81  $this->mail_data[$key] = '';
82  } else {
83  $this->mail_data[$key] = trim($this->mail_data[$key]);
84  }
85 
86  if ($this->mail_data[$key] !== '') {
87  $this->mail_data[$key] .= ',';
88  }
89  $this->mail_data[$key] .= $name_str;
90 
91  return $this->mail_data;
92  }
93 
94  public function appendSignature(string $message): string
95  {
96  return $message . (chr(13) . chr(10) . $this->mail_options->getSignature());
97  }
98 
99  public function prependSignature(string $message): string
100  {
101  return $this->mail_options->getSignature() .
102  chr(13) .
103  chr(10) .
104  chr(13) .
105  chr(10) .
106  $message;
107  }
108 
109  public function formatReplyMessage(string $message): string
110  {
111  $bodylines = preg_split("/\r\n|\n|\r/", $message);
112  foreach ($bodylines as $i => $iValue) {
113  $bodylines[$i] = '> ' . $iValue;
114  }
115 
116  return implode(chr(10), $bodylines);
117  }
118 
119  public function formatReplySubject(string $subject): string
120  {
121  return 'RE: ' . $subject;
122  }
123 
124  public function formatForwardSubject(string $subject): string
125  {
126  return '[FWD: ' . $subject . ']';
127  }
128 }
formatForwardSubject(string $subject)
array $mail_data
appendSignature(string $message)
appendSearchResult(array $a_names, string $a_type)
prependSignature(string $message)
global $DIC
Definition: shib_login.php:22
formatReplyMessage(string $message)
formatReplySubject(string $subject)
$message
Definition: xapiexit.php:31