Skip to content

Commit

Permalink
Merge branch 'main' of github.com:vormkracht10/filament-mails
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa committed Sep 6, 2024
2 parents a525dd9 + 56a2925 commit 874bbdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/MailResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ public static function table(Table $table): Table
$cc = explode(',', $data['cc']);
$bcc = explode(',', $data['bcc']);

(new ResendMail())->handle($record, $to, $cc, $bcc);
(new ResendMail)->handle($record, $to, $cc, $bcc);

Notification::make()
->title(__('Mail will be resent in the background'))
Expand All @@ -372,7 +372,7 @@ public static function table(Table $table): Table
$to = json_decode($record->to, true) ?? [];
$cc = json_decode($record->cc, true) ?? [];
$bcc = json_decode($record->bcc, true) ?? [];
(new ResendMail())->handle($record, $to, $cc, $bcc);
(new ResendMail)->handle($record, $to, $cc, $bcc);
}

Notification::make()
Expand Down

0 comments on commit 874bbdf

Please sign in to comment.