| 1 | <?php |
||
| 15 | class SwiftMailerReporter extends AbstractMailReporter |
||
| 16 | { |
||
| 17 | private $mailer; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Swift_Mailer $mailer |
||
| 21 | * @param string|array $recipients |
||
| 22 | * @param string $sender |
||
| 23 | * @param string $subject |
||
| 24 | * @param bool $sendOnWarning |
||
| 25 | */ |
||
| 26 | public function __construct(Swift_Mailer $mailer, $recipients, $sender, $subject, $sendOnWarning = true) |
||
| 32 | |||
| 33 | protected function sendEmail(ResultsCollection $results) |
||
| 56 | } |
||
| 57 |