ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilCronDeleteInactiveUserReminderMailNotification.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once './Services/Mail/classes/class.ilMimeMailNotification.php';
5 include_once './Services/Mail/classes/class.ilMimeMail.php';
6 
14 {
18  public function __construct()
19  {
20  parent::__construct();
21  }
22 
26  protected function initLanguageByIso2Code($a_code = '')
27  {
28  parent::initLanguageByIso2Code($a_code);
29  $this->getLanguage()->loadLanguageModule('user');
30  }
31 
32  public function send()
33  {
34  global $DIC;
35 
36  $lng = $DIC['lng'];
37 
38  $additional_information = $this->getAdditionalInformation();
39 
42 
43  foreach ($this->getRecipients() as $rcp) {
44  try {
45  $this->handleCurrentRecipient($rcp);
46  } catch (ilMailException $e) {
47  continue;
48  }
49 
50  $this->initMimeMail();
51  $this->initLanguageByIso2Code();
52 
54  $date_for_deletion = ilDatePresentation::formatDate(new ilDate($additional_information["date"], IL_CAL_UNIX));
55 
56  $this->setSubject($this->getLanguage()->txt('del_mail_subject'));
57  $body = sprintf($this->getLanguage()->txt("del_mail_body"), $rcp->fullname, "\n\n", $additional_information["www"], $date_for_deletion);
58  $this->appendBody($body);
60  $this->sendMimeMail($this->getCurrentRecipient());
61  }
62 
65  }
66 }
global $DIC
Definition: saml.php:7
Class ilMailException.
static setUseRelativeDates($a_status)
set use relative dates
const IL_CAL_UNIX
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static useRelativeDates()
check if relative dates are used
static setLanguage($a_lng)
set language
Class for single dates.
$lng
getRecipients()
get array of recipients
Base class for mime mail notifications.
appendBody($a_body)
Append body text.
static _getInstallationSignature()