mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 03:16:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			983 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			983 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Notifications;
 | |
| 
 | |
| use App\Filament\Server\Pages\Console;
 | |
| use App\Models\Server;
 | |
| use App\Models\User;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Notifications\Messages\MailMessage;
 | |
| use Illuminate\Notifications\Notification;
 | |
| 
 | |
| class AddedToServer extends Notification implements ShouldQueue
 | |
| {
 | |
|     use Queueable;
 | |
| 
 | |
|     public function __construct(public Server $server) {}
 | |
| 
 | |
|     /** @return string[] */
 | |
|     public function via(): array
 | |
|     {
 | |
|         return ['mail'];
 | |
|     }
 | |
| 
 | |
|     public function toMail(User $notifiable): MailMessage
 | |
|     {
 | |
|         return (new MailMessage())
 | |
|             ->greeting('Hello ' . $notifiable->username . '!')
 | |
|             ->line('You have been added as a subuser for the following server, allowing you certain control over the server.')
 | |
|             ->line('Server Name: ' . $this->server->name)
 | |
|             ->action('Visit Server', Console::getUrl(panel: 'server', tenant: $this->server));
 | |
|     }
 | |
| }
 | 
