Fixed #5503 -- corrected a small typo in email example. Thanks, trey@ktrl.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6351 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ec7d80b9dd
commit
23f95c9dfa
|
@ -328,7 +328,7 @@ attribute on the ``EmailMessage`` class to change the main content type. The
|
|||
major type will always be ``"text"``, but you can change it to the subtype. For
|
||||
example::
|
||||
|
||||
msg = EmailMessage(subject, html_content, from_email, to)
|
||||
msg = EmailMessage(subject, html_content, from_email, [to])
|
||||
msg.content_subtype = "html" # Main content is now text/html
|
||||
msg.send()
|
||||
|
||||
|
|
Loading…
Reference in New Issue