update email adresses
This commit is contained in:
parent
648065df58
commit
0055c0e60c
2 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ class ResetPasswordController extends AbstractController
|
||||||
}
|
}
|
||||||
|
|
||||||
$email = (new TemplatedEmail())
|
$email = (new TemplatedEmail())
|
||||||
->from(new Address('no-reply@example.com', 'plantex no-reply'))
|
->from(new Address('no-reply@thisfro.ch', 'plantex no-reply'))
|
||||||
->to($user->getEmail())
|
->to($user->getEmail())
|
||||||
->subject('Your password reset request')
|
->subject('Your password reset request')
|
||||||
->htmlTemplate('reset_password/email.html.twig')
|
->htmlTemplate('reset_password/email.html.twig')
|
||||||
|
|
|
@ -26,7 +26,7 @@ class TradeController extends AbstractController
|
||||||
if($user != $offer->getByUser())
|
if($user != $offer->getByUser())
|
||||||
{
|
{
|
||||||
$email = (new TemplatedEmail())
|
$email = (new TemplatedEmail())
|
||||||
->from('no-reply@pfleanz.li')
|
->from('no-reply@thisfro.ch')
|
||||||
->to($offer->getByUser()->getEmail())
|
->to($offer->getByUser()->getEmail())
|
||||||
->replyTo($user->getEmail())
|
->replyTo($user->getEmail())
|
||||||
->subject($user->getUsername() . ' wants to trade with you!')
|
->subject($user->getUsername() . ' wants to trade with you!')
|
||||||
|
|
Reference in a new issue