1 | <?php |
||
5 | class EmailNotification |
||
6 | { |
||
7 | /** |
||
8 | * @var \Swift_Mailer |
||
9 | */ |
||
10 | private $mailer; |
||
11 | /** |
||
12 | * @var \Twig_Environment |
||
13 | */ |
||
14 | private $twig; |
||
15 | |||
16 | private $from; |
||
17 | |||
18 | 1 | public function __construct(\Swift_Mailer $mailer, \Twig_Environment $twig, $from) |
|
24 | |||
25 | 1 | public function sendNotification($email, $title = 'Hello!', $content = ' ', $user = null) |
|
36 | } |
||
37 |