2018-09-15 23:43:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Notifications;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
2018-09-15 23:59:07 +00:00
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
2018-09-15 23:43:22 +00:00
|
|
|
|
|
|
|
class MailTested extends Notification
|
|
|
|
{
|
2022-10-14 16:59:20 +00:00
|
|
|
public function __construct(private User $user)
|
2018-09-15 23:59:07 +00:00
|
|
|
{
|
2018-09-15 23:43:22 +00:00
|
|
|
}
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
public function via(): array
|
2018-09-15 23:43:22 +00:00
|
|
|
{
|
|
|
|
return ['mail'];
|
|
|
|
}
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
public function toMail(): MailMessage
|
2018-09-15 23:43:22 +00:00
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
return (new MailMessage())
|
2018-09-15 23:43:22 +00:00
|
|
|
->subject('Pterodactyl Test Message')
|
2022-12-15 01:17:27 +00:00
|
|
|
->greeting('Hello ' . $this->user->username . '!')
|
2018-09-15 23:43:22 +00:00
|
|
|
->line('This is a test of the Pterodactyl mail system. You\'re good to go!');
|
|
|
|
}
|
|
|
|
}
|