40 lines
908 B
PHP
40 lines
908 B
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Support\Facades\Lang;
|
|
|
|
class ResetPasswordNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
public $token;
|
|
public $email;
|
|
|
|
public function __construct($token, $email)
|
|
{
|
|
$this->token = $token;
|
|
$this->email = $email;
|
|
}
|
|
|
|
public function via($notifiable)
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
public function toMail($notifiable)
|
|
{
|
|
$url = url(route('password.reset', [
|
|
'token' => $this->token,
|
|
'email' => $this->email,
|
|
], false));
|
|
|
|
return (new MailMessage)
|
|
->subject(Lang::get('Reset Password Notification'))
|
|
->view('emails.reset-password', ['url' => $url]);
|
|
}
|
|
}
|