From 8ed9e9074c9841c0e5e6b35d659fdc7c654eea93 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 10 Apr 2012 20:02:56 +0000 Subject: [PATCH] =?UTF-8?q?[1.4.X]=20Fixed=20#18095=20--=20Added=20missing?= =?UTF-8?q?=20'cc'=20mention=20in=20EmailMessage=20recipients()=20descript?= =?UTF-8?q?ion.=20Thanks=20St=C3=A9phane=20Raimbault=20for=20the=20report?= =?UTF-8?q?=20and=20the=20patch.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of r17891 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17892 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.