); | ); | ||||
} | } | ||||
public function sendEmailAdmin() | |||||
{ | |||||
return Yii::$app->mailerService->sendAdmin( | |||||
'Contact : ' . $this->subject, | |||||
'contact', | |||||
[ | |||||
'content' => $this->body, | |||||
'name' => $this->name | |||||
], | |||||
$this->email | |||||
); | |||||
} | |||||
} | } |
$model = new ContactForm(); | $model = new ContactForm(); | ||||
$messageSent = false; | $messageSent = false; | ||||
if ($model->load(Yii::$app->request->post()) && $model->validate()) { | if ($model->load(Yii::$app->request->post()) && $model->validate()) { | ||||
$model->sendEmail(Yii::$app->parameterBag->get('adminEmail')); | |||||
$model->sendEmailAdmin(); | |||||
$messageSent = true; | $messageSent = true; | ||||
} | } | ||||