virgule dans sendmail

This commit is contained in:
Fred Tempez 2023-07-16 18:47:50 +02:00
parent 89f21660c3
commit f4c386daf2
4 changed files with 6 additions and 7 deletions

View File

@ -167,7 +167,7 @@ class install extends common
'<strong>URL du site :</strong> <a href="' . helper::baseUrl(false) . '" target="_blank">' . helper::baseUrl(false) . '</a><br>' .
'<strong>Identifiant du compte :</strong> ' . $this->getInput('installId') . '<br>',
null,
'localhost',
'localhost'
);
// Nettoyage fr par défaut

View File

@ -137,7 +137,7 @@ class user extends common
'<strong>Identifiant du compte :</strong> ' . $this->getInput('userAddId') . '<br>' .
'<small>Nous ne conservons pas les mots de passe, en conséquence nous vous conseillons de conserver ce message tant que vous ne vous êtes pas connecté. Vous pourrez modifier votre mot de passe après votre première connexion.</small>',
null,
$this->getData(['config', 'smtp', 'from']),
$this->getData(['config', 'smtp', 'from'])
);
}
// Valeurs en sortie
@ -408,7 +408,7 @@ class user extends common
'<a href="' . helper::baseUrl() . 'user/reset/' . $userId . '/' . $uniqId . '" target="_blank">' . helper::baseUrl() . 'user/reset/' . $userId . '/' . $uniqId . '</a><br><br>' .
'<small>Si nous n\'avez pas demandé à réinitialiser votre mot de passe, veuillez ignorer ce mail.</small>',
null,
$this->getData(['config', 'smtp', 'from']),
$this->getData(['config', 'smtp', 'from'])
);
// Valeurs en sortie
$this->addOutput([
@ -1151,7 +1151,7 @@ class user extends common
'<strong>Identifiant du compte :</strong> ' . $userId . '<br>' .
'<small>Un mot de passe provisoire vous été attribué, à la première connexion cliquez sur Mot de passe Oublié.</small>',
null,
$this->getData(['config', 'smtp', 'from']),
$this->getData(['config', 'smtp', 'from'])
);
if ($sent === true) {
// Mail envoyé changement de l'icône

View File

@ -789,8 +789,7 @@ class blog extends common
'Bonjour' . ' <strong>' . $firstname[$key] . ' ' . $lastname[$key] . '</strong>,<br><br>' .
'L\'article <a href="' . helper::baseUrl() . $this->getUrl(0) . '/ ' . $this->getUrl(1) . '">' . $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'title']) . '</a> a reçu un nouveau commentaire.<br><br>',
null,
$this->getData(['config', 'smtp', 'from']),
$this->getData(['config', 'smtp', 'from'])
);
if ($sent === false)
$error++;

View File

@ -489,7 +489,7 @@ class form extends common
'Nouveau message en provenance de la page "' . $this->getData(['page', $this->getUrl(0), 'title']) . '" :<br><br>' .
$content,
$replyTo,
$this->getData(['config', 'smtp', 'from']),
$this->getData(['config', 'smtp', 'from'])
);
}
}