lasthourcloud/app/Notifications/Channels/TransactionalEmailChannel.php

46 lines
1.2 KiB
PHP
Raw Normal View History

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