<pman>Intégration de la branche dev74

This commit is contained in:
Jephté Clain 2025-10-28 05:35:29 +04:00
commit 7632746edc
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,5 @@
## Release 0.7.2p74 du 28/10/2025-05:34
## Release 0.7.1p82 du 23/10/2025-10:28
## Release 0.7.1p74 du 23/10/2025-10:27

View File

@ -1 +1 @@
0.7.1
0.7.2

View File

@ -173,7 +173,8 @@ class mailer {
$tos = str::join(",", $tos);
msg::debug("Sending to $tos");
if (!$mailer->send()) {
throw new MailerException("erreur d'envoi du mail", $mailer->ErrorInfo);
throw (new MailerException("erreur d'envoi du mail"))
->setTechMessage($mailer->ErrorInfo);
}
}