57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
// app/Notifications/ResetPasswordNotification.php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class ResetPasswordNotification extends Notification
|
|
{
|
|
public $token;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @param string $token
|
|
* @return void
|
|
*/
|
|
public function __construct($token)
|
|
{
|
|
$this->token = $token;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
$url = url(route('password.reset', ['token' => $this->token, 'email' => $notifiable->email], false));
|
|
|
|
return (new MailMessage)
|
|
->subject('Reset Password Notification')
|
|
->line('You are receiving this email because we received a password reset request for your account.')
|
|
->action('Reset Password', $url)
|
|
->line('If you did not request a password reset, no further action is required.');
|
|
}
|
|
}
|