Author: timo
Date: 2011-01-25 18:37:08 -0600 (Tue, 25 Jan 2011)
New Revision: 15311

Modified:
   django/trunk/docs/topics/email.txt
Log:
Fixed #15163 - typo in email docs; thanks metal for the report.

Modified: django/trunk/docs/topics/email.txt
===================================================================
--- django/trunk/docs/topics/email.txt  2011-01-25 15:44:41 UTC (rev 15310)
+++ django/trunk/docs/topics/email.txt  2011-01-26 00:37:08 UTC (rev 15311)
@@ -92,7 +92,7 @@
 two different sets of recipients; however, only one connection to the
 mail server would be opened::
 
-    message1 = ('Subject here', 'Here is the message', 'f...@example.com, 
['fi...@example.com', 'ot...@example.com'])
+    message1 = ('Subject here', 'Here is the message', 'f...@example.com', 
['fi...@example.com', 'ot...@example.com'])
     message2 = ('Another Subject', 'Here is another message', 
'f...@example.com', ['sec...@test.com'])
     send_mass_mail((message1, message2), fail_silently=False)
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to