'Verification Code', ]; } /** * Sends an email to the specified email address using the information collected by this model. * * @return bool whether the email was sent */ public function sendEmail() { return Yii::$app->mailer->compose() ->setTo($this->email) ->setFrom([Yii::$app->params['senderEmail'] => Yii::$app->params['senderName']]) ->setSubject($this->subject) ->setTextBody($this->body) ->send(); } }