diff --git a/src/Service/Mailer/Mail/Suivi/SuiviNewCommentBackMailer.php b/src/Service/Mailer/Mail/Suivi/SuiviNewCommentBackMailer.php index bf888f151..b6813ee4f 100644 --- a/src/Service/Mailer/Mail/Suivi/SuiviNewCommentBackMailer.php +++ b/src/Service/Mailer/Mail/Suivi/SuiviNewCommentBackMailer.php @@ -28,13 +28,10 @@ public function __construct( public function getMailerParamsFromNotification(NotificationMail $notificationMail): array { $signalement = $notificationMail->getSignalement(); - $uuid = $signalement->getUuid(); return array_merge($notificationMail->getParams(), [ 'ref_signalement' => $signalement->getReference(), - 'link' => $this->urlGenerator->generate('back_signalement_view', [ - 'uuid' => $uuid, - ], UrlGeneratorInterface::ABSOLUTE_URL), + 'link' => $this->generateLinkSignalementView($signalement->getUuid()), ]); }