chore: remove log
This commit is contained in:
parent
4d23835119
commit
07a0863401
1 changed files with 0 additions and 3 deletions
|
|
@ -7,7 +7,6 @@
|
||||||
use Illuminate\Mail\Message;
|
use Illuminate\Mail\Message;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use Illuminate\Support\Facades\Mail;
|
use Illuminate\Support\Facades\Mail;
|
||||||
use Log;
|
|
||||||
|
|
||||||
class TransactionalEmailChannel
|
class TransactionalEmailChannel
|
||||||
{
|
{
|
||||||
|
|
@ -15,8 +14,6 @@ public function send(User $notifiable, Notification $notification): void
|
||||||
{
|
{
|
||||||
$settings = instanceSettings();
|
$settings = instanceSettings();
|
||||||
if (! data_get($settings, 'smtp_enabled') && ! data_get($settings, 'resend_enabled')) {
|
if (! data_get($settings, 'smtp_enabled') && ! data_get($settings, 'resend_enabled')) {
|
||||||
Log::info('SMTP/Resend not enabled');
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$email = $notifiable->email;
|
$email = $notifiable->email;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue