/**
  * Sends an email with a link, for resetting the password.
  *
  * @return boolean whether the email was send
  */
 public function sendEmail()
 {
     /* @var $user User */
     $user = User::findOne(['status_id' => ValueHelpers::getStatusId('Active'), 'email' => $this->email]);
     if ($user) {
         if (!User::isPasswordResetTokenValid($user->password_reset_token)) {
             $user->generatePasswordResetToken();
         }
         if ($user->save()) {
             return \Yii::$app->mailer->compose(['html' => 'passwordResetToken-html', 'text' => 'passwordResetToken-text'], ['user' => $user])->setFrom([\Yii::$app->params['supportEmail'] => \Yii::$app->name . ' robot'])->setTo($this->email)->setSubject('Password reset for ' . \Yii::$app->name)->send();
         }
     }
     return false;
 }
Example #2
0
 /**
  * Finds user by password reset token
  *
  * @param string $token password reset token
  * @return static|null
  */
 public static function findByPasswordResetToken($token)
 {
     if (!static::isPasswordResetTokenValid($token)) {
         return null;
     }
     return static::findOne(['password_reset_token' => $token, 'status' => ValueHelpers::getStatusId('Ativo')]);
 }