Thierry Lam
Thierry Lam

Reputation: 46284

Does Django's EmailMessage object support the CC field?

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?

Upvotes: 1

Views: 309

Answers (1)

Brian Tol
Brian Tol

Reputation: 4199

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

Upvotes: 3

Related Questions