Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasZdv committed Nov 20, 2022
1 parent 716269c commit b78c589
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion classes/SendMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ public static function sendNotification($properties, $post, $record, $files) {
}

// SEND NOTIFICATION EMAIL
Mail::sendTo($properties['mail_recipients'], $template, $data, function ($message) use ($properties, $post, $files) {
$recipients = array_combine($properties['mail_recipients'], $properties['mail_recipients']);

Mail::sendTo($recipients, $template, $data, function ($message) use ($properties, $post, $files) {

// SEND BLIND CARBON COPY
if (isset($properties['mail_bcc']) && is_array($properties['mail_bcc'])) {
Expand Down

0 comments on commit b78c589

Please sign in to comment.