coolify/app/Notifications/Channels/TransactionalEmailChannel.php

43 lines
1.1 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;
use Illuminate\Mail\Message;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Mail;
class TransactionalEmailChannel
{
public function send(User $notifiable, Notification $notification): void
{
2023-06-13 10:51:58 +02:00
$settings = InstanceSettings::get();
if (data_get($settings, 'smtp_enabled') !== true) {
2023-06-13 10:51:58 +02:00
return;
}
2023-06-12 12:00:01 +02:00
$email = $notifiable->email;
if (!$email) {
return;
}
2023-06-20 19:08:43 +02:00
$this->bootConfigs();
2023-06-12 12:00:01 +02:00
$mailMessage = $notification->toMail($notifiable);
Mail::send(
[],
[],
fn (Message $message) => $message
->from(
data_get($settings, 'smtp_from_address'),
data_get($settings, 'smtp_from_name')
2023-06-12 12:00:01 +02:00
)
->to($email)
->subject($mailMessage->subject)
->html((string)$mailMessage->render())
);
}
2023-06-20 19:08:43 +02:00
private function bootConfigs(): void
2023-06-12 12:00:01 +02:00
{
2023-06-12 16:39:48 +02:00
set_transanctional_email_settings();
2023-06-12 12:00:01 +02:00
}
}