Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tarkatronic/django-allauth-djrill

Django Allauth account adapter for sending email through Mandrill
https://github.com/tarkatronic/django-allauth-djrill

Last synced: about 1 month ago
JSON representation

Django Allauth account adapter for sending email through Mandrill

Awesome Lists containing this project

README

        

=====================
django-allauth-djrill
=====================

`Django Allauth`_ account adapter for sending email through `Mandrill`_, using `Djrill`_

Installation
============

To install the latest release:

pip install django-allauth-djrill

Alternatively, to install the latest development version:

pip install https://github.com/obsidiancard/django-allauth-djrill/tarball/master

Amend your `INSTALLED_APPS` setting:

INSTALLED_APPS = (
...,
'allauth_djrill',
)

Ensure that your `EMAIL_BACKEND` is set up to use Djrill:

EMAIL_BACKEND = 'djrill.mail.backends.djrill.DjrillBackend'

Switch your allauth account adapter:

ACCOUNT_ADAPTER = 'allauth_djrill.adapter.DjrillAccountAdapter'

.. _Django Allauth: https://github.com/pennersr/django-allauth
.. _Mandrill: http://mandrill.com/
.. _Djrill: https://github.com/brack3t/Djrill