2016-09-03 21:09:00 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-09-03 21:09:00 +00:00
|
|
|
namespace Pterodactyl\Notifications;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
|
2016-09-05 16:00:56 +00:00
|
|
|
class SendPasswordReset extends Notification implements ShouldQueue
|
2016-09-03 21:09:00 +00:00
|
|
|
{
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function __construct(public string $token)
|
2016-09-03 21:09:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function via(): array
|
2016-09-03 21:09:00 +00:00
|
|
|
{
|
|
|
|
return ['mail'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function toMail(mixed $notifiable): MailMessage
|
2016-09-03 21:09:00 +00:00
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
return (new MailMessage())
|
2016-09-03 21:09:00 +00:00
|
|
|
->subject('Reset Password')
|
|
|
|
->line('You are receiving this email because we received a password reset request for your account.')
|
2021-01-02 02:28:17 +00:00
|
|
|
->action('Reset Password', url('/auth/password/reset/' . $this->token . '?email=' . urlencode($notifiable->email)))
|
2016-09-03 21:09:00 +00:00
|
|
|
->line('If you did not request a password reset, no further action is required.');
|
|
|
|
}
|
|
|
|
}
|