diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-06 05:27:58 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-06 05:27:58 +0000 |
| commit | b304ebb906af5c51f9bb832244e8b5ffddcd2966 (patch) | |
| tree | 0801450c0c394232a16a9aa291bb7b0ebd6a93fe /docs | |
| parent | 9a090b2c1f953d9f8ede4bd71747204cf153098e (diff) | |
Added a closing </p>' to a code example in docs/email.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5814 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/email.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/email.txt b/docs/email.txt index 50dafaf8df..97bdec0037 100644 --- a/docs/email.txt +++ b/docs/email.txt @@ -314,7 +314,7 @@ To send a text and HTML combination, you could write:: subject, from_email, to = 'hello', 'from@example.com', 'to@example.com' text_content = 'This is an important message.' - html_content = '<p>This is an <strong>important</strong> message.' + html_content = '<p>This is an <strong>important</strong> message.</p>' msg = EmailMultiAlternatives(subject, text_content, from_email, to) msg.attach_alternative(html_content, "text/html") msg.send() |
