Commit 5dff03fc authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Correction d'un paramète envoyé à tord aux mailer de symfony

parent 5ac34c95
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
7.1.1
-----
- Correction d'un paramète envoyé à tord aux mailer de symfony

7.1.0
-----
- Ajout d'une methode pour faire un envoi directement avec un objet Symfony Email
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ EOS;
                if ($redirect === true) {
                    $mailSymfony = $this->prepareMessageForRedirection($mailSymfony, $module);
                }
                $this->getMailer()->send($mailSymfony, $module);
                $this->getMailer()->send($mailSymfony);
            } catch (TransportExceptionInterface $e) {
                throw new RuntimeException("Échec de l'envoi du message", 0, $e);
            }