12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace frontend\models;
- use Yii;
- use common\models\User;
- use yii\base\Model;
- class ResendVerificationEmailForm extends Model
- {
- /**
- * @var string
- */
- public $email;
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- ['email', 'trim'],
- ['email', 'required'],
- ['email', 'email'],
- ['email', 'exist',
- 'targetClass' => '\common\models\User',
- 'filter' => ['status' => User::STATUS_INACTIVE],
- 'message' => 'There is no user with this email address.'
- ],
- ];
- }
- /**
- * Sends confirmation email to user
- *
- * @return bool whether the email was sent
- */
- public function sendEmail()
- {
- $user = User::findOne([
- 'email' => $this->email,
- 'status' => User::STATUS_INACTIVE
- ]);
- if ($user === null) {
- return false;
- }
- return Yii::$app
- ->mailer
- ->compose(
- ['html' => 'emailVerify-html', 'text' => 'emailVerify-text'],
- ['user' => $user]
- )
- ->setFrom([Yii::$app->params['supportEmail'] => Yii::$app->name . ' robot'])
- ->setTo($this->email)
- ->setSubject('Account registration at ' . Yii::$app->name)
- ->send();
- }
- }
|