2016-09-03 21:09:00 +00:00
|
|
|
<?php
|
2016-09-05 16:00:56 +00:00
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-09-05 16:00:56 +00:00
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-09-05 16:00:56 +00:00
|
|
|
*/
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The password reset token.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $token;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param string $token
|
2016-09-03 21:09:00 +00:00
|
|
|
*/
|
|
|
|
public function __construct($token)
|
|
|
|
{
|
|
|
|
$this->token = $token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param mixed $notifiable
|
2021-01-23 20:33:34 +00:00
|
|
|
*
|
2016-09-03 21:09:00 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function via($notifiable)
|
|
|
|
{
|
|
|
|
return ['mail'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param mixed $notifiable
|
2021-01-23 20:33:34 +00:00
|
|
|
*
|
2016-09-03 21:09:00 +00:00
|
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
|
|
*/
|
|
|
|
public function toMail($notifiable)
|
|
|
|
{
|
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.');
|
|
|
|
}
|
|
|
|
}
|