From 7c9f64b973f7d204a05a61c0ab3793c4373cc0f4 Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 14:40:44 -0800 Subject: [PATCH] updated readme --- README.rst | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e73f924..ead6b62 100644 --- a/README.rst +++ b/README.rst @@ -1,2 +1,30 @@ -COMING SOON -=========== +Djrill, for Mandrill +==================== + +Djrill is an email backend and new message class for Django users that want to take advantage of the Mandrill transactional SMTP +service from MailChimp. + +Installation +------------ + +Coming soon. + +Configuration +------------- + +In ``settings.py``: + +1. Add ``djrill`` to your ``INSTALLED_APPS``. +2. Add the following two lines, substituting your own ``MANDRILL_API_KEY``: + + MANDRILL_API_KEY = "brack3t-is-awesome" + MANDRILL_API_URL = "http://mandrillapp.com/api/1.0" + +3. Override your existing email backend with the following line: + + EMAIL_BACKEND = "djrill.mail.backends.djrill.DjrillBackend" + +Usage +----- + +Coming soon