ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRegistrationMimeMailNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  public const TYPE_NOTIFICATION_ACTIVATION = 32;
28 
29  public function send(): void
30  {
31  if ($this->getType() === self::TYPE_NOTIFICATION_ACTIVATION) {
32  $additional_information = $this->getAdditionalInformation();
36  $user = $additional_information['usr'];
37  $this->getLanguage()->loadLanguageModule("registration");
38 
39  foreach ($this->getRecipients() as $rcp) {
40  try {
41  $this->handleCurrentRecipient($rcp);
42  } catch (ilMailException $e) {
43  continue;
44  }
45 
46  $this->initMimeMail();
47  $this->setSubject($this->getLanguage()->txt('reg_mail_subject_confirmation'));
48  $this->setBody($this->getLanguage()->txt('reg_mail_body_salutation') . ' ' . $user->getFullname() . ',');
49  $this->appendBody("\n\n");
50  $this->appendBody($this->getLanguage()->txt('reg_mail_body_activation'));
51  $this->appendBody("\n");
52  $this->appendBody(ILIAS_HTTP_PATH . '/confirmReg.php?client_id=' . CLIENT_ID . '&rh=' . ilObjUser::_generateRegistrationHash($user->getId()));
53  $this->appendBody("\n\n");
54  $this->appendBody(sprintf(
55  $this->getLanguage()->txt('reg_mail_body_2_confirmation'),
57  $additional_information['hash_lifetime'],
58  false,
59  $this->getLanguage()
60  )
61  ));
62  $this->appendBody("\n\n");
63  $this->appendBody($this->getLanguage()->txt('reg_mail_body_3_confirmation'));
65 
66  $this->sendMimeMail($this->getCurrentRecipient());
67  }
68  }
69  }
70 }
Class for mime mail registration notifications.
static secondsToString(int $seconds, bool $force_with_seconds=false, ?ilLanguage $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
static _generateRegistrationHash(int $a_usr_id)
Generates a unique hashcode for activating a user profile after registration.
const CLIENT_ID
Definition: constants.php:41
catch(ilCmiXapiException $e) send($response)
Definition: xapitoken.php:100
static _getInstallationSignature()