Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function sendReportReadyEmailNotification(string $email, string $reportUrl): void |
||
37 | { |
||
38 | $emailObject = (new Email()) |
||
39 | ->from($this->fromEmail) |
||
40 | ->to($email) |
||
41 | ->subject('Your report is ready!') |
||
42 | ->text("You can download your report here $reportUrl"); |
||
43 | |||
44 | $this->mailer->send($emailObject); |
||
45 | } |
||
46 | } |
||
47 |