diff --git a/CHANGES.md b/CHANGES.md index a053048..2d0574f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## Release 0.7.2p82 du 28/10/2025-05:36 + +## 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 diff --git a/VERSION.txt b/VERSION.txt index 39e898a..7486fdb 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.7.1 +0.7.2 diff --git a/php/src/mail/mailer.php b/php/src/mail/mailer.php index ac2e9ad..cfdc84d 100644 --- a/php/src/mail/mailer.php +++ b/php/src/mail/mailer.php @@ -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); } }