| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function export() |
||
| 36 | { |
||
| 37 | $module = Module::getInstance(); |
||
| 38 | |||
| 39 | foreach ($this->messages as $message) { |
||
| 40 | return $this->mailer |
||
| 41 | ->compose($this->view, $module->prepareMessageData($message, $this)) |
||
| 42 | ->setTo($this->to) |
||
| 43 | ->setFrom($module->flagEmail($this->from)) |
||
| 44 | ->setSubject($module->prepareSubject($message, $this->subject)) |
||
| 45 | ->send(); |
||
| 46 | } |
||
| 47 | } |
||
| 48 | } |
||
| 49 |