tags:

views:

48

answers:

1

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?

+2  A: 

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

Chip Tol