1 | <?php |
||
14 | class MailerService |
||
15 | { |
||
16 | private $mailer; |
||
17 | private $templating; |
||
18 | private $generator; |
||
19 | private $mailerFrom; |
||
20 | |||
21 | 1 | public function __construct(\Swift_Mailer $mailer, TwigEngine $template, RandomGenerator $randomGenerator, $mailerFrom) |
|
28 | |||
29 | public function sendMail($mailTo) |
||
48 | |||
49 | public function sendMailRecovery($mailTo) |
||
68 | } |