'Verification Code' ]; } /** * 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() ->setFrom('feedbackggbn@bgbm.org') ->setTo('p.kelbert@bgbm.org') ->setSubject('Feedback from GGBN') ->setTextBody($this->body) ->send(); } }