2016-09-05 16:00:56 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-09-05 16:00:56 +00:00
|
|
|
namespace Pterodactyl\Notifications;
|
|
|
|
|
2018-01-01 18:13:08 +00:00
|
|
|
use Pterodactyl\Models\User;
|
2016-09-05 16:00:56 +00:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
|
|
|
|
class AccountCreated extends Notification implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function __construct(public User $user, public ?string $token = null)
|
2016-09-05 16:00:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function via(): array
|
2016-09-05 16:00:56 +00:00
|
|
|
{
|
2016-10-14 19:58:52 +00:00
|
|
|
return ['mail'];
|
2016-09-05 16:00:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function toMail(): MailMessage
|
2016-09-05 16:00:56 +00:00
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
$message = (new MailMessage())
|
2022-12-15 01:17:27 +00:00
|
|
|
->greeting('Hello!')
|
2018-05-06 18:22:30 +00:00
|
|
|
->line('You are receiving this email because an account has been created for you on ' . config('app.name') . '.')
|
2017-02-17 23:48:57 +00:00
|
|
|
->line('Username: ' . $this->user->username)
|
2018-01-01 18:13:08 +00:00
|
|
|
->line('Email: ' . $this->user->email);
|
2017-02-18 00:26:02 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!is_null($this->token)) {
|
2018-07-01 01:47:31 +00:00
|
|
|
return $message->action('Setup Your Account', url('/auth/password/reset/' . $this->token . '?email=' . urlencode($this->user->email)));
|
2017-02-18 00:26:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $message;
|
2016-09-05 16:00:56 +00:00
|
|
|
}
|
|
|
|
}
|