lasthourcloud/app/Notifications/Channels/EmailChannel.php

54 lines
1.7 KiB
PHP
Raw Normal View History

2023-06-01 10:15:33 +00:00
<?php
namespace App\Notifications\Channels;
use Illuminate\Mail\Message;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Mail;
class EmailChannel
{
public function send(SendsEmail $notifiable, Notification $notification): void
{
$this->bootConfigs($notifiable);
2023-07-28 08:55:26 +00:00
ray($notification);
$recepients = $notifiable->getRecepients($notification);
2023-06-12 10:00:01 +00:00
2023-07-28 08:55:26 +00:00
if (count($recepients) === 0) {
throw new \Exception('No email recipients found');
2023-06-01 10:15:33 +00:00
}
2023-07-28 08:55:26 +00:00
2023-06-01 10:15:33 +00:00
$mailMessage = $notification->toMail($notifiable);
Mail::send(
[],
[],
fn(Message $message) => $message
2023-06-01 10:15:33 +00:00
->from(
data_get($notifiable, 'smtp_from_address'),
data_get($notifiable, 'smtp_from_name'),
2023-06-01 10:15:33 +00:00
)
2023-07-28 08:55:26 +00:00
->bcc($recepients)
2023-06-01 10:15:33 +00:00
->subject($mailMessage->subject)
->html((string)$mailMessage->render())
);
}
private function bootConfigs($notifiable): void
{
$password = data_get($notifiable, 'smtp_password');
2023-06-20 19:18:14 +00:00
if ($password) $password = decrypt($password);
2023-06-01 10:15:33 +00:00
config()->set('mail.default', 'smtp');
config()->set('mail.mailers.smtp', [
"transport" => "smtp",
"host" => data_get($notifiable, 'smtp_host'),
"port" => data_get($notifiable, 'smtp_port'),
"encryption" => data_get($notifiable, 'smtp_encryption'),
"username" => data_get($notifiable, 'smtp_username'),
2023-06-20 19:18:14 +00:00
"password" => $password,
"timeout" => data_get($notifiable, 'smtp_timeout'),
2023-06-01 10:15:33 +00:00
"local_domain" => null,
]);
}
}