From 7c9f64b973f7d204a05a61c0ab3793c4373cc0f4 Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 14:40:44 -0800 Subject: [PATCH 1/4] 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 From 36ab06c4bd5d3265f83d18f389a7223a47819e27 Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 14:41:19 -0800 Subject: [PATCH 2/4] extra line? --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index ead6b62..74ac3bd 100644 --- a/README.rst +++ b/README.rst @@ -18,6 +18,7 @@ In ``settings.py``: 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: From 2c30f73af9a64a242955a4fe39b7ca0d8f24f302 Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 14:41:51 -0800 Subject: [PATCH 3/4] code blocks --- README.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 74ac3bd..179733d 100644 --- a/README.rst +++ b/README.rst @@ -15,14 +15,11 @@ Configuration In ``settings.py``: 1. Add ``djrill`` to your ``INSTALLED_APPS``. -2. Add the following two lines, substituting your own ``MANDRILL_API_KEY``: - +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: - +3. Override your existing email backend with the following line:: EMAIL_BACKEND = "djrill.mail.backends.djrill.DjrillBackend" Usage From 94bed5b04f29e68bbca8fb036381fa4c169fbdaa Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Tue, 28 Feb 2012 14:42:22 -0800 Subject: [PATCH 4/4] er, blocks --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 179733d..d725209 100644 --- a/README.rst +++ b/README.rst @@ -16,10 +16,12 @@ 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