From 6403048e445ef3d8934c05b1e2ae300869d683b8 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 28 Jan 2026 11:43:03 +0100 Subject: [PATCH] update mail sender --- src/Service/EmailService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Service/EmailService.php b/src/Service/EmailService.php index f4f1b3e..1dc4309 100644 --- a/src/Service/EmailService.php +++ b/src/Service/EmailService.php @@ -32,7 +32,7 @@ class EmailService ); $this->logger->info("link generated: " . $link); $email = (new TemplatedEmail()) - ->from('no-reply@sudalys.fr') + ->from('no-reply@solutions-easy.com') ->to($user->getEmail()) ->subject('Définissez votre mot de passe') ->htmlTemplate('emails/password_setup.html.twig') @@ -60,7 +60,7 @@ class EmailService ], UrlGeneratorInterface::ABSOLUTE_URL); $this->logger->info("link generated: " . $link); $email = (new TemplatedEmail()) - ->from('no-reply@sudalys.fr') + ->from('no-reply@solutions-easy.com') ->to($existingUser->getEmail()) ->subject("Invitation à rejoindre l'organisation " . $org->getName()) ->htmlTemplate('emails/existing_user_notification.html.twig')