From a8707b93c07d929270de3ade425da0e17a9def90 Mon Sep 17 00:00:00 2001 From: Vinicius Cainelli Date: Thu, 15 Dec 2011 19:19:20 -0200 Subject: [PATCH] added support BCC in django_backend.py --- postmark/django_backend.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/postmark/django_backend.py b/postmark/django_backend.py index aa676c0..ffd8c17 100644 --- a/postmark/django_backend.py +++ b/postmark/django_backend.py @@ -59,6 +59,7 @@ def _send(self, message): return False try: recipients = ','.join(message.to) + recipients_bcc = ','.join(message.bcc) html_body = None if isinstance(message, EmailMultiAlternatives): @@ -83,6 +84,7 @@ def _send(self, message): subject=message.subject, sender=message.from_email, to=recipients, + bcc=recipients_bcc, text_body=message.body, html_body=html_body, reply_to=reply_to,