From 916d705538045529709c83033ef22f9b3895a462 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 10 Apr 2012 20:00:18 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20#18095=20--=20Added=20missing=20'cc'=20?= =?UTF-8?q?mention=20in=20EmailMessage=20recipients()=20description.=20Tha?= =?UTF-8?q?nks=20St=C3=A9phane=20Raimbault=20for=20the=20report=20and=20th?= =?UTF-8?q?e=20patch.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://code.djangoproject.com/svn/django/trunk@17891 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/email.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/email.txt b/docs/topics/email.txt index 0c5f1adf8d..2069773f8a 100644 --- a/docs/topics/email.txt +++ b/docs/topics/email.txt @@ -290,8 +290,8 @@ The class has the following methods: override this method to put the content you want into the MIME object. * ``recipients()`` returns a list of all the recipients of the message, - whether they're recorded in the ``to`` or ``bcc`` attributes. This is - another method you might need to override when subclassing, because the + whether they're recorded in the ``to``, ``cc`` or ``bcc`` attributes. This + is another method you might need to override when subclassing, because the SMTP server needs to be told the full list of recipients when the message is sent. If you add another way to specify recipients in your class, they need to be returned from this method as well.