I’m reading the Django EmailMessage doc and it doesn’t mention the CC field. What changes should I make so that I can put recipients in the CC field?
I’m reading the Django EmailMessage doc and it doesn’t mention the CC field. What
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like Django doesn’t support the CC field:
http://code.djangoproject.com/browser/django/trunk/django/core/mail.py#L193
However, here’s a subclass that does:
http://www.djangosnippets.org/snippets/630/
Also, here’s the ticket that explains the lack of a CC field:
http://code.djangoproject.com/ticket/5790