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\Notifications\Notification;
|
||||
use Illuminate\Support\Facades\Mail;
|
||||
use Log;
|
||||
|
||||
class TransactionalEmailChannel
|
||||
{
|
||||
|
|
@ -15,8 +14,6 @@ public function send(User $notifiable, Notification $notification): void
|
|||
{
|
||||
$settings = instanceSettings();
|
||||
if (! data_get($settings, 'smtp_enabled') && ! data_get($settings, 'resend_enabled')) {
|
||||
Log::info('SMTP/Resend not enabled');
|
||||
|
||||
return;
|
||||
}
|
||||
$email = $notifiable->email;
|
||||
|
|
|
|||
Loading…
Reference in a new issue