#15163: The send-mass-mail section contains a wrong example
----------------------------+-----------------------------------------------
 Reporter:  metal           |       Owner:  nobody    
   Status:  new             |   Milestone:            
Component:  Documentation   |     Version:  1.2       
 Keywords:  send-mass-mail  |       Stage:  Unreviewed
Has_patch:  1               |  
----------------------------+-----------------------------------------------
 Hi!

 I found one bug in the send-mass-mail section.
 http://docs.djangoproject.com/en/dev/topics/email/#send-mass-mail

 The 'from' element is a bad string.

 Bad:

 {{{
 message1 = ('Subject here', 'Here is the message', 'f...@example.com,
 ['fi...@example.com', 'ot...@example.com'])
 }}}

 Correct:

 {{{
 message1 = ('Subject here', 'Here is the message', 'f...@example.com',
 ['fi...@example.com', 'ot...@example.com'])
 }}}

 Cheers.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/15163>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
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