Changes between Initial Version and Version 1 of Ticket #5042
- Timestamp:
- Aug 6, 2007, 12:19:25 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5042 – Description
initial v1 3 3 You need to surround the to with [], otherwise you get an error can't add a string to a list. 4 4 5 {{{ 5 6 from django.core.mail import EmailMultiAlternatives 6 7 … … 11 12 msg.attach_alternative(html_content, "text/html") 12 13 msg.send() 14 }}}