vito/app/Notifications/ServerInstallationSucceed.php
2024-02-16 21:54:51 +01:00

48 lines
1.4 KiB
PHP

<?php
namespace App\Notifications;
use App\Models\Server;
use Illuminate\Notifications\Messages\MailMessage;
class ServerInstallationSucceed extends AbstractNotification
{
protected Server $server;
public function __construct(Server $server)
{
$this->server = $server;
}
public function subject(): string
{
return __('Server installation succeed!');
}
public function rawText(): string
{
$this->server->refresh();
return __("Installation succeed for server [:server] \nServer IP: :ip \nUser: :user\nPassword: :password\n:link", [
'server' => $this->server->name,
'ip' => $this->server->ip,
'user' => $this->server->authentication['user'],
'password' => $this->server->authentication['pass'],
'link' => url('/servers/'.$this->server->id),
]);
}
public function toEmail(object $notifiable): MailMessage
{
$this->server->refresh();
return (new MailMessage)
->subject(__('Server installation succeed!'))
->line('Your server ['.$this->server->name.'] has been installed successfully.')
->line('Server IP: '.$this->server->ip)
->line('User: '.$this->server->authentication['user'])
->line('Password: '.$this->server->authentication['pass'])
->action('Manage Your Server', url('/login'));
}
}