19 declare(strict_types=1);
32 private int $mode = self::MODE_DIRECT_REGISTRATION;
49 $clone->mode = self::MODE_DIRECT_REGISTRATION;
56 $clone->mode = self::MODE_REGISTRATION_WITH_EMAIL_CONFIRMATION;
63 isset($mailData[
'body'], $mailData[
'subject']) &&
64 is_string($mailData[
'body']) &&
65 $mailData[
'body'] !==
'' &&
66 is_string($mailData[
'subject']) &&
67 $mailData[
'subject'] !==
'' 73 $trimStrings =
static function ($value) {
74 if (is_string($value)) {
75 $value = trim($value);
81 $this->
logger->debug(sprintf(
82 "Trying to send configurable email dependent welcome email to user %s (id: %s|language: %s) ...",
91 $this->
logger->debug(sprintf(
92 "Either subject or email missing, trying to determine email configuration via default language: %s",
93 $this->
language->getDefaultLanguage()
97 if (!is_array($mailData)) {
98 $this->
logger->debug(sprintf(
99 "Did not find any email configuration for language '%s' at all, skipping attempt ...",
100 $this->
language->getDefaultLanguage()
105 $mailData =
array_map($trimStrings, $mailData);
107 $this->
logger->debug(
"Did not find any valid email configuration, skipping attempt ...");
113 $accountMail->setUser($user);
115 if ($this->
settings->passwordGenerationEnabled()) {
116 $accountMail->setUserPassword($rawPassword);
119 if (isset($mailData[
'att_file'])) {
123 $pathToFile =
'/' . implode(
'/',
array_map(
static function (
string $pathPart):
string {
124 return trim($pathPart,
'/');
126 $fs->getAbsolutePath(),
130 $accountMail->addAttachment($pathToFile, $mailData[
'att_file']);
132 $this->
logger->debug(sprintf(
133 "Attaching '%s' as '%s' ...",
135 $mailData[
'att_file']
138 $this->
logger->debug(
"Not attachments configured for this email configuration ...");
141 $accountMail->send();
143 $this->
logger->debug(
"Welcome email sent");
151 bool $usedRegistrationCode
154 $this->
logger->debug(sprintf(
155 "Missing email address, did not send account registration mail for user %s (id: %s) ...",
162 $this->
logger->debug(sprintf(
163 "Sending language variable dependent welcome email to user %s (id: %s|language: %s) as fallback ...",
186 if ($this->
settings->passwordGenerationEnabled()) {
191 if ($this->
getMode() === self::MODE_DIRECT_REGISTRATION) {
197 } elseif ($this->
getMode() === self::MODE_REGISTRATION_WITH_EMAIL_CONFIRMATION) {
205 $this->
appendBody($user->getProfileAsString($this->language));
210 $this->
logger->debug(
"Welcome email sent");
213 public function send(
ilObjUser $user,
string $rawPassword =
'',
bool $usedRegistrationCode =
false): void
ilRegistrationSettings $settings
appendBody(string $a_body)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initLanguageByIso2Code(string $a_code='')
getFullname(int $a_max_strlen=0)
Class ilAccountRegistrationMail.
static _lookupNewAccountMail(string $a_lang)
sendLanguageVariableBasedAccountMail(ilObjUser $user, string $rawPassword, bool $usedRegistrationCode)
setSubject(string $a_subject)
withEmailConfirmationRegistrationMode()
const MODE_REGISTRATION_WITH_EMAIL_CONFIRMATION
__construct(ilRegistrationSettings $settings, ilLanguage $lng, ilLogger $logger)
sendMimeMail(string $a_rcp)
Class ilObjAuthSettingsGUI.
send(ilObjUser $user, string $rawPassword='', bool $usedRegistrationCode=false)
__construct(Container $dic, ilPlugin $plugin)
withDirectRegistrationMode()
trySendingUserDefinedAccountMail(ilObjUser $user, string $rawPassword)
language()
description: > Example for rendring a language glyph.
isEmptyMailConfigurationData(array $mailData)
const MODE_DIRECT_REGISTRATION
static _getInstallationSignature()