Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | public function contact($email) |
||
51 | { |
||
52 | if ($this->validate()) { |
||
53 | Yii::$app->mailer->compose() |
||
|
|||
54 | ->setTo($email) |
||
55 | ->setFrom([Yii::$app->params['senderEmail'] => Yii::$app->params['senderName']]) |
||
56 | ->setReplyTo([$this->email => $this->name]) |
||
57 | ->setSubject($this->subject) |
||
58 | ->setTextBody($this->body) |
||
59 | ->send(); |
||
60 | |||
61 | return true; |
||
62 | } |
||
63 | return false; |
||
64 | } |
||
66 |