Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
34 | public function build() |
||
35 | { |
||
36 | return $this->from($this->mailData['from'], $this->mailData['from_name']) |
||
37 | ->to($this->mailData['to'], $this->mailData['to_name']) |
||
38 | ->subject('Activeer je account op '.$this->settings['domain']) |
||
39 | ->view('chuckcms::backend.mails.userActivationMail'); |
||
40 | } |
||
42 |