2017-02-18 00:23:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Notifications;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
|
|
|
|
class RemovedFromServer extends Notification implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Queueable;
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
public object $server;
|
2017-02-18 00:23:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*/
|
|
|
|
public function __construct(array $server)
|
|
|
|
{
|
|
|
|
$this->server = (object) $server;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function via(): array
|
2017-02-18 00:23:27 +00:00
|
|
|
{
|
|
|
|
return ['mail'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function toMail(): MailMessage
|
2017-02-18 00:23:27 +00:00
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
return (new MailMessage())
|
2017-02-18 00:23:27 +00:00
|
|
|
->error()
|
|
|
|
->greeting('Hello ' . $this->server->user . '.')
|
|
|
|
->line('You have been removed as a subuser for the following server.')
|
|
|
|
->line('Server Name: ' . $this->server->name)
|
|
|
|
->action('Visit Panel', route('index'));
|
|
|
|
}
|
|
|
|
}
|