| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function mailAction() |
||
| 19 | { |
||
| 20 | $info['newTemplateMail[mailable]=1'] = $this->mail('me@localhost', 'Hi', [ |
||
| 21 | 'body' => 'mailable body', |
||
| 22 | ]); |
||
| 23 | |||
| 24 | $info['newTemplateMail=2'] = $this->mailer->newTemplateMail('mail.template') |
||
| 25 | ->setTo(['me@localhost', 'test@localhost']) |
||
| 26 | ->setSubject('Hi') |
||
| 27 | ->mail(); |
||
| 28 | |||
| 29 | $this->view->setVar('info', print_r($info, 1)); |
||
| 30 | } |
||
| 47 |