blue-twilight/app/Notifications/SentEmailDatabaseChannel.php

24 lines
584 B
PHP

<?php
namespace App\Notifications;
use App\EmailLog;
use Illuminate\Notifications\Notification;
class SentEmailDatabaseChannel extends EmailDatabaseWriterChannelBase
{
/**
* Send the given notification.
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
*/
public function send($notifiable, Notification $notification)
{
/** @var EmailLog $logEntry */
$logEntry = $notification->toEmailDatabase($notifiable);
$this->writeToTable($logEntry, false);
}
}