coolify/app/Notifications/Notifications/TestNotification.php

41 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2023-06-14 09:54:00 +00:00
namespace App\Notifications\Notifications;
2023-06-01 10:15:33 +00:00
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\DiscordChannel;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
2023-06-01 10:15:33 +00:00
class TestNotification extends Notification implements ShouldQueue
{
use Queueable;
public function via(object $notifiable): array
{
2023-05-25 16:27:52 +00:00
$channels = [];
2023-06-19 13:24:04 +00:00
if ($notifiable->extra_attributes?->get('smtp_active') && $notifiable->extra_attributes?->get('notifications_email_test')) {
2023-06-19 12:31:42 +00:00
$channels[] = EmailChannel::class;
}
2023-06-19 13:24:04 +00:00
if ($notifiable->extra_attributes?->get('discord_active') && $notifiable->extra_attributes?->get('notifications_discord_test')) {
2023-06-19 12:31:42 +00:00
$channels[] = DiscordChannel::class;
}
2023-05-25 16:27:52 +00:00
return $channels;
}
2023-06-12 10:00:01 +00:00
public function toMail(): MailMessage
{
2023-06-19 12:31:42 +00:00
$mail = new MailMessage();
$mail->subject("Coolify Test Notification");
$mail->view('emails.test');
return $mail;
}
2023-06-12 10:00:01 +00:00
public function toDiscord(): string
{
2023-06-19 12:31:42 +00:00
return 'This is a test Discord notification from Coolify.
[Go to your dashboard](' . base_url() . ')';
}
}