Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tarkatronic/django-allauth-djrill
- Owner: tarkatronic
- License: other
- Created: 2015-08-07T17:38:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-19T23:27:32.000Z (over 9 years ago)
- Last Synced: 2024-10-15T03:52:42.444Z (3 months ago)
- Language: Python
- Size: 91.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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