Metadata-Version: 1.1
Name: django-allauth-djrill
Version: 0.1.0
Summary: Django Allauth account adapter for sending email using Mandrill templates
Home-page: https://github.com/obsidiancard/django-allauth-djrill/
Author: Joey Wilhelm <jwilhelm@opay.io>
Author-email: jwilhelm@opay.io
License: Apache
Description: =====================
        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
        
Keywords: django,allauth,mailchimp,mandrill,email
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Web Environment
