-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
SimpleResettingMailer.php
63 lines (51 loc) · 1.92 KB
/
SimpleResettingMailer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
declare(strict_types=1);
/*
* This file is part of the NucleosUserBundle package.
*
* (c) Christian Gripp <mail@core23.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nucleos\UserBundle\Mailer;
use Nucleos\UserBundle\Mailer\Mail\ResettingMail;
use Nucleos\UserBundle\Model\UserInterface;
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
use Symfony\Component\Mailer\MailerInterface as SymfonyMailer;
use Symfony\Component\Mime\Address;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
final class SimpleResettingMailer implements ResettingMailer
{
private SymfonyMailer $mailer;
private TranslatorInterface $translator;
private UrlGeneratorInterface $router;
private string $fromEmail;
public function __construct(SymfonyMailer $mailer, TranslatorInterface $translator, UrlGeneratorInterface $router, string $fromEmail)
{
$this->mailer = $mailer;
$this->translator = $translator;
$this->router = $router;
$this->fromEmail = $fromEmail;
}
/**
* @throws TransportExceptionInterface
*/
public function sendResettingEmailMessage(UserInterface $user): void
{
$url = $this->router->generate('nucleos_user_resetting_reset', [
'token' => $user->getConfirmationToken(),
], UrlGeneratorInterface::ABSOLUTE_URL);
$mail = (new ResettingMail())
->from(Address::create($this->fromEmail))
->to(new Address($user->getEmail()))
->subject($this->translator->trans('resetting.email.subject', [
'%username%' => $user->getUsername(),
], 'NucleosUserBundle'))
->setUser($user)
->setConfirmationUrl($url)
;
$this->mailer->send($mail);
}
}