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(
|
|
|
|
[],
|
|
|
|
[],
|
2023-08-08 09:51:36 +00:00
|
|
|
fn(Message $message) => $message
|
2023-06-01 10:15:33 +00:00
|
|
|
->from(
|
2023-07-27 19:26:15 +00:00
|
|
|
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
|
|
|
|
{
|
2023-07-27 19:26:15 +00:00
|
|
|
$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",
|
2023-07-27 19:26:15 +00:00
|
|
|
"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,
|
2023-07-27 19:26:15 +00:00
|
|
|
"timeout" => data_get($notifiable, 'smtp_timeout'),
|
2023-06-01 10:15:33 +00:00
|
|
|
"local_domain" => null,
|
|
|
|
]);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|