ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilMailSummaryNotification.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once './Services/Mail/classes/class.ilMailNotification.php';
5 
6 include_once 'Services/Mail/classes/class.ilMimeMail.php';
7 include_once 'Services/Mail/classes/class.ilMail.php';
8 
16 {
20  public function __construct($a_is_personal_workspace = false)
21  {
22  parent::__construct($a_is_personal_workspace);
23  }
24 
25  public function send()
26  {
27  global $ilDB, $lng, $ilSetting;
28 
29  $is_message_enabled = $ilSetting->get("mail_notification_message");
30 
31  $res = $ilDB->queryF('SELECT mail.* FROM mail_options
32  INNER JOIN mail ON mail.user_id = mail_options.user_id
33  INNER JOIN mail_obj_data ON mail_obj_data.obj_id = mail.folder_id
34  INNER JOIN usr_data ud ON ud.usr_id = mail.user_id
35  WHERE mail_options.cronjob_notification = %s
36  AND mail.send_time >= %s
37  AND mail.m_status = %s
38  AND ud.active = %s',
39  array('integer', 'timestamp', 'text', 'integer'),
40  array(1, date('Y-m-d H:i:s', time() - 60 * 60 * 24), 'unread', 1)
41  );
42 
43  $users = array();
44  $user_id = 0;
45 
46  while($row = $ilDB->fetchAssoc($res))
47  {
48  if($user_id == 0 || $row['user_id'] != $user_id)
49  {
50  $user_id = $row['user_id'];
51  }
52  $users[$user_id][] = $row;
53  }
54 
55  foreach($users as $user_id => $mail_data)
56  {
57  $this->initLanguage($user_id);
58  $user_lang = $this->getLanguage() ? $this->getLanguage() : $lng;
59 
60  $this->initMail();
61 
62  $this->setRecipients(array($user_id));
63  $this->setSubject($this->getLanguageText('mail_notification_subject'));
64 
65  $this->setBody(ilMail::getSalutation($user_id, $this->getLanguage()));
66  $this->appendBody("\n\n");
67  if(count($mail_data) == 1)
68  {
69  $this->appendBody(sprintf($user_lang->txt('mail_at_the_ilias_installation'), count($mail_data), ilUtil::_getHttpPath()));
70  }
71  else
72  {
73  $this->appendBody(sprintf($user_lang->txt('mails_at_the_ilias_installation'), count($mail_data), ilUtil::_getHttpPath()));
74  }
75  $this->appendBody("\n\n");
76 
77  $counter = 1;
78  foreach($mail_data as $mail)
79  {
80  $this->appendBody("----------------------------------------------------------------------------------------------");
81  $this->appendBody("\n\n");
82  $this->appendBody('#'.$counter."\n\n");
83  $this->appendBody($user_lang->txt('date') .": ".$mail['send_time']);
84  $this->appendBody("\n");
85  if($mail['sender_id'] == ANONYMOUS_USER_ID)
86  {
87  $sender = ilMail::_getIliasMailerName();
88  }
89  else
90  {
91  $sender = ilObjUser::_lookupLogin($mail['sender_id']);
92  }
93  $this->appendBody($user_lang->txt('sender') . ": " . $sender);
94  $this->appendBody("\n");
95  $this->appendBody($user_lang->txt('subject').": ". $mail['m_subject']);
96  $this->appendBody("\n\n");
97 
98  if($is_message_enabled == true)
99  {
100  $this->appendBody($user_lang->txt('message').": ". $mail['m_message']);
101  $this->appendBody("\n\n");
102  }
103  ++$counter;
104  }
105  $this->appendBody("----------------------------------------------------------------------------------------------");
106  $this->appendBody("\n\n");
107  $this->appendBody($user_lang->txt('follow_link_to_read_mails')." ");
108  $this->appendBody("\n");
109  $mailbox_link = ilUtil::_getHttpPath();
110  $mailbox_link .= "/goto.php?target=mail&client_id=".CLIENT_ID;
111 
112  $this->appendBody($mailbox_link);
113  $this->appendBody("\n\n");
114  $this->appendBody(ilMail::_getAutoGeneratedMessageString($this->getLanguage()));
115  $this->appendBody(ilMail::_getInstallationSignature());
116 
117  $mmail = new ilMimeMail();
118  $mmail->autoCheck(false);
119  $mmail->From(ilMail::getIliasMailerAddress());
120  $mmail->To(ilObjUser::_lookupEmail($user_id));
121 
122  $mmail->Subject($this->getSubject());
123  $mmail->Body($this->getBody());
124  $mmail->Send();
125  }
126  }
127 }
static _lookupLogin($a_user_id)
lookup login
initLanguage($a_usr_id)
Init language.
__construct($a_is_personal_workspace=false)
{}
$counter
Base class for course/group mail notifications.
this class encapsulates the PHP mail() function.
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
Create styles array
The data for the language used.
static _getHttpPath()
global $ilSetting
Definition: privfeed.php:17
static _lookupEmail($a_user_id)
Lookup email.
global $lng
Definition: privfeed.php:17
global $ilDB
appendBody($a_body)
Append body text.
Add data(end) time
Method that wraps PHPs time in order to allow simulations with the workflow.