Пример #1
0
 /**
  * Send the email varify link via e-mail.
  *
  * @param  \Taketwo\Contracts\CanVerifyEmail $user
  * @param  string $token
  * @param  \Closure|null $callback
  * @return int
  */
 public function emailVeriryLink(CanVerifyEmail $user, $token, Closure $callback = null)
 {
     // We will use the reminder view that was given to the broker to display the
     // password reminder e-mail. We'll pass a "token" variable into the views
     // so that it may be displayed for an user to click for password reset.
     $view = $this->emailView;
     return $this->mailer->send($view, compact('token', 'user'), function ($m) use($user, $token, $callback) {
         $m->to($user->getEmailForVerify());
         if (!is_null($callback)) {
             call_user_func($callback, $m, $user, $token);
         }
     });
 }
 /**
  * Determine if a token record exists and is valid.
  *
  * @param  \Taketwo\Contracts\CanVerifyEmail $user
  * @param  string $token
  * @return bool
  */
 public function exists(CanVerifyEmailContract $user, $token)
 {
     $email = $user->getEmailForVerify();
     $token = (array) $this->getTable()->where('email', $email)->where('token', $token)->first();
     return $token && !$this->tokenExpired($token);
 }