coolify/app/Notifications/Channels/TransactionalEmailChannel.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2023-06-12 12:00:01 +02:00
<?php
namespace App\Notifications\Channels;
use App\Models\InstanceSettings;
use App\Models\User;
2023-08-31 15:00:59 +02:00
use Exception;
2023-06-12 12:00:01 +02:00
use Illuminate\Mail\Message;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Mail;
2023-08-31 15:00:59 +02:00
use Log;
2023-06-12 12:00:01 +02:00
class TransactionalEmailChannel
{
public function send(User $notifiable, Notification $notification): void
{
2023-06-13 10:51:58 +02:00
$settings = InstanceSettings::get();
2024-06-10 22:43:34 +02:00
if (! data_get($settings, 'smtp_enabled') && ! data_get($settings, 'resend_enabled')) {
2023-08-31 15:00:59 +02:00
Log::info('SMTP/Resend not enabled');
2024-06-10 22:43:34 +02:00
2023-06-13 10:51:58 +02:00
return;
}
2023-06-12 12:00:01 +02:00
$email = $notifiable->email;
2024-06-10 22:43:34 +02:00
if (! $email) {
2023-06-12 12:00:01 +02:00
return;
}
2023-06-20 19:08:43 +02:00
$this->bootConfigs();
2023-06-12 12:00:01 +02:00
$mailMessage = $notification->toMail($notifiable);
2023-09-01 15:52:18 +02:00
Mail::send(
[],
[],
fn (Message $message) => $message
->to($email)
->subject($mailMessage->subject)
2024-06-10 22:43:34 +02:00
->html((string) $mailMessage->render())
2023-09-01 15:52:18 +02:00
);
2023-06-12 12:00:01 +02:00
}
2023-06-20 19:08:43 +02:00
private function bootConfigs(): void
2023-06-12 12:00:01 +02:00
{
2023-08-31 15:00:59 +02:00
$type = set_transanctional_email_settings();
2024-06-10 22:43:34 +02:00
if (! $type) {
2023-08-31 15:00:59 +02:00
throw new Exception('No email settings found.');
}
2023-06-12 12:00:01 +02:00
}
}