Merge branch 'dev/mailing/bugfix-2' into 'develop'
update mail sender See merge request easy-solutions/apps/easyportal!11
This commit is contained in:
commit
2c7402249d
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue