From e9004c1f0b5b0a90e86cc5f22146c7b0ec107301 Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 16:50:52 -0800 Subject: [PATCH] updated readme --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 0e48a2a..4e0a2ca 100644 --- a/README.rst +++ b/README.rst @@ -85,7 +85,7 @@ Example, in a view: :: from_name = "Djrill" # optional to = ["Djrill Receiver ", "djrill.two@example.com"] text_content = "This is the text version of your email" - html_content = "

This is the HTML version of your email

# optional, requires the ``attach_alternative`` line below + html_content = "

This is the HTML version of your email

" # optional, requires the ``attach_alternative`` line below tags = ["one tag", "two tag", "red tag", "blue tag"] # optional, can't be over 50 chars or start with an underscore msg = DjrillMessage(subject, text_content, from_email, to, tags=tags, from_name=from_name)