App\Services\Auth\Back\User::sendPasswordResetNotification PHP Méthode

sendPasswordResetNotification() public méthode

Send the password reset notification.
public sendPasswordResetNotification ( string $token )
$token string
    public function sendPasswordResetNotification($token)
    {
        Mail::to($this->email)->send(new ResetPassword($this, $token));
    }