Skip to content

Commit 65ce3f4

Browse files
committed
Fix wrong key
1 parent 59dd3db commit 65ce3f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Utopia/Messaging/Adapter/Email/Mailgun.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ protected function process(EmailMessage $message): array
7777
? "{$bcc['name']}<{$bcc['email']}>"
7878
: $bcc['email'];
7979

80-
$body['cc'] = !empty($body['cc'])
81-
? "{$body['cc']},{$bccString}"
80+
$body['bcc'] = !empty($body['bcc'])
81+
? "{$body['bcc']},{$bccString}"
8282
: $bccString;
8383
}
8484
}

0 commit comments

Comments
 (0)