1 | <?php |
||
22 | final class ReportMailer |
||
23 | { |
||
24 | /** @var MailerInterface */ |
||
25 | private $mailer; |
||
26 | |||
27 | /** @var string */ |
||
28 | private $fromEmail; |
||
29 | |||
30 | public function __construct(MailerInterface $mailer, string $fromEmail) |
||
35 | |||
36 | public function sendReportReadyEmailNotification(string $email, string $reportUrl): void |
||
46 | } |
||
47 |