Django

Code

Changeset 6351

Show
Ignore:
Timestamp:
09/15/07 22:57:33 (1 year ago)
Author:
ubernostrum
Message:

Fixed #5503 -- corrected a small typo in email example. Thanks, trey@ktrl.com.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/email.txt

    r5814 r6351  
    329329example:: 
    330330 
    331     msg = EmailMessage(subject, html_content, from_email, to
     331    msg = EmailMessage(subject, html_content, from_email, [to]
    332332    msg.content_subtype = "html"  # Main content is now text/html 
    333333    msg.send()