Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 1 | public function send(NotifyResult $notifyResult): void |
|
34 | { |
||
35 | 1 | $email = (new Email()) |
|
36 | 1 | ->to($this->toAddress) |
|
37 | 1 | ->from(self::NO_REPLY_EMAIL) |
|
38 | 1 | ->subject($this->generateSubject($notifyResult)) |
|
39 | 1 | ->html($this->templateGenerator->generateHtml($notifyResult)); |
|
40 | |||
41 | 1 | $this->mailer->send($email); |
|
42 | 1 | } |
|
51 |