ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailSummaryNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  protected ilLanguage $lng;
28  protected ilDBInterface $db;
29  protected ilSetting $settings;
31 
32  public function __construct(bool $a_is_personal_workspace = false)
33  {
34  global $DIC;
35  $this->db = $DIC->database();
36  $this->lng = $DIC->language();
37  $this->settings = $DIC->settings();
38  $this->senderFactory = $DIC->mail()->mime()->senderFactory();
39 
40  parent::__construct($a_is_personal_workspace);
41  }
42 
43  public function send(): void
44  {
45  $is_message_enabled = (bool) $this->settings->get('mail_notification_message', '0');
46 
47  $res = $this->db->queryF(
48  'SELECT mail.* FROM mail_options
49  INNER JOIN mail ON mail.user_id = mail_options.user_id
50  INNER JOIN mail_obj_data ON mail_obj_data.obj_id = mail.folder_id
51  INNER JOIN usr_data ud ON ud.usr_id = mail.user_id
52  WHERE mail_options.cronjob_notification = %s
53  AND mail.send_time >= %s
54  AND mail.m_status = %s
55  AND ud.active = %s',
56  ['integer', 'timestamp', 'text', 'integer'],
57  [1, date('Y-m-d H:i:s', time() - 60 * 60 * 24), 'unread', 1]
58  );
59 
60  $users = [];
61  $user_id = 0;
62 
63  while ($row = $this->db->fetchAssoc($res)) {
64  if ($user_id === 0 || (int) $row['user_id'] !== $user_id) {
65  $user_id = (int) $row['user_id'];
66  }
67  $users[$user_id][] = $row;
68  }
69  $sender = $this->senderFactory->system();
70 
71  foreach ($users as $user_id => $mail_data) {
72  $this->initLanguage($user_id);
73  $user_lang = $this->getLanguage();
74 
75  $this->initMail();
76 
77  $this->setRecipients([$user_id]);
78  $this->setSubject($this->getLanguageText('mail_notification_subject'));
79 
80  $this->setBody(ilMail::getSalutation($user_id, $user_lang));
81  $this->appendBody("\n\n");
82  if (count($mail_data) === 1) {
83  $this->appendBody(sprintf(
84  $user_lang->txt('mail_at_the_ilias_installation'),
85  count($mail_data),
87  ));
88  } else {
89  $this->appendBody(sprintf(
90  $user_lang->txt('mails_at_the_ilias_installation'),
91  count($mail_data),
93  ));
94  }
95  $this->appendBody("\n\n");
96 
97  $counter = 1;
98  foreach ($mail_data as $mail) {
99  $this->appendBody(
100  '----------------------------------------------------------------------------------------------'
101  );
102  $this->appendBody("\n\n");
103  $this->appendBody('#' . $counter . "\n\n");
104  $this->appendBody($user_lang->txt('date') . ': ' . $mail['send_time']);
105  $this->appendBody("\n");
106  if ((int) $mail['sender_id'] === ANONYMOUS_USER_ID) {
107  $senderName = ilMail::_getIliasMailerName();
108  } else {
109  $senderName = ilObjUser::_lookupLogin((int) $mail['sender_id']);
110  }
111  $this->appendBody($user_lang->txt('sender') . ': ' . $senderName);
112  $this->appendBody("\n");
113  $this->appendBody($user_lang->txt('subject') . ': ' . $mail['m_subject']);
114  $this->appendBody("\n\n");
115 
116  if ($is_message_enabled) {
117  $this->appendBody($user_lang->txt('message') . ': ' . $mail['m_message']);
118  $this->appendBody("\n\n");
119  }
120  ++$counter;
121  }
122  $this->appendBody(
123  '----------------------------------------------------------------------------------------------'
124  );
125  $this->appendBody("\n\n");
126  $this->appendBody($user_lang->txt('follow_link_to_read_mails') . ' ');
127  $this->appendBody("\n");
128  $mailbox_link = rtrim(ilUtil::_getHttpPath(), '/');
129  $mailbox_link .= '/goto.php?target=mail&client_id=' . CLIENT_ID;
130 
131  $this->appendBody($mailbox_link);
132  $this->appendBody("\n\n");
135 
136  $mmail = new ilMimeMail();
137  $mmail->From($sender);
138 
139  $mailOptions = new ilMailOptions($user_id);
140  $mmail->To($mailOptions->getExternalEmailAddresses());
141 
142  $mmail->Subject($this->getSubject());
143  $mmail->Body($this->getBody());
144  $mmail->Send();
145  }
146  }
147 }
$res
Definition: ltiservices.php:66
const ANONYMOUS_USER_ID
Definition: constants.php:27
static _getIliasMailerName()
static _getAutoGeneratedMessageString(?ilLanguage $lang=null)
__construct(bool $a_is_personal_workspace=false)
static getSalutation(int $a_usr_id, ?ilLanguage $a_language=null)
const CLIENT_ID
Definition: constants.php:41
global $DIC
Definition: shib_login.php:22
getLanguageText(string $a_keyword)
static _getHttpPath()
__construct(Container $dic, ilPlugin $plugin)
setSubject(string $a_subject)
static _getInstallationSignature()
static _lookupLogin(int $a_user_id)