Skip to content

Commit

Permalink
Merge pull request #13 from dataquestio/master
Browse files Browse the repository at this point in the history
Unbreak Bcc E-mails
  • Loading branch information
kidig authored Mar 16, 2018
2 parents de26a52 + fb8bb84 commit 824924d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_mailjet/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def _build_standard_message_dict(self, message):

if message.bcc:
msg_dict['Bcc'] = ', '.join([sanitize_address(addr, message.encoding) for addr in message.bcc])
use_recipients = True
use_recipients = False

if use_recipients:
msg_dict['Recipients'] = self._parse_recipients(message, message.to)
Expand Down

0 comments on commit 824924d

Please sign in to comment.