From e6f9190532347b14c2dbe0cf4aadc73c8e8ad4a2 Mon Sep 17 00:00:00 2001 From: David Novakovic Date: Fri, 12 Sep 2014 00:26:10 +1000 Subject: [PATCH] Fix small doco bug in mail.Message. You have to read the source to figure out what is going on if you don't pass message as a param. This updates the example docs to show the correct invocation. --- cyclone/mail.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cyclone/mail.py b/cyclone/mail.py index 7ddd057b16..19e17cfbb6 100644 --- a/cyclone/mail.py +++ b/cyclone/mail.py @@ -49,6 +49,7 @@ class Message(object): from_addr="root@localhost", to_addrs=["user1", "user2", "user3"], subject="Test, 123", + message="Hello thar!", mime="text/html") """