We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ec3102 + f729095 commit 3885b35Copy full SHA for 3885b35
setup.py
@@ -14,5 +14,5 @@
14
license='MIT',
15
description='SendGrid Backend for Django',
16
long_description=open('./README.rst').read(),
17
- install_requires=["sendgrid==0.5.1"],
+ install_requires=["sendgrid==1.3.0"],
18
)
sgbackend/mail.py
@@ -59,6 +59,8 @@ def send_messages(self, emails):
59
def _build_sg_mail(self, email):
60
mail = sendgrid.Mail()
61
mail.add_to(email.to)
62
+ mail.add_cc(email.cc)
63
+ mail.add_bcc(email.bcc)
64
mail.set_text(email.body)
65
mail.set_subject(email.subject)
66
mail.set_from(email.from_email)
0 commit comments