'Champs obligatoire'], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'subject' => 'Sujet', 'body' => 'Message', ]; } /** * Sends an email to the specified email address using the information collected by this model. * * @param string $email the target email address * @return boolean whether the email was sent */ public function sendEmail($email) { return Yii::$app->mailer->compose() ->setTo($email) ->setFrom(['matthieu@lechatdesnoisettes.com' => 'Le Chat des Noisettes']) ->setSubject($this->subject) ->setTextBody($this->body) ->send(); } }