Metadata-Version: 1.0
Name: django-email-bandit
Version: 0.1
Summary: django-email-bandit is a Django email backend for hijacking email sending in a test environment.
Home-page: https://github.com/caktus/django-email-bandit
Author: Caktus Consulting Group
Author-email: solutions@caktusgroup.com
License: BSD
Description: Django-Email-Bandit
        ==============================
        
        A Django email backend for hijacking email sending in test environment. It extends
        the default SMTP backend to intercept outgoing emails and instead send them
        to a single email address.
        
        It does not intercept emails going to the site admins (as defined by the ADMINS
        setting) so it will not impact the 500 error emails.
        
        
        Requirements
        -------------------------------
        
        - Django >= 1.2
        
        
        Installation
        -------------------------------
        
        To install django-email-bandit via pip::
        
            pip install django-email-bandit
        
        Or you can from the latest version from Github manually::
        
            git clone git://github.com/caktus/django-email-bandit.git
            cd django-email-bandit
            python setup.py install
        
        or via pip::
        
            pip install -e git+https://github.com/caktus/django-email-bandit.git
        
        For your test environment you should enable the backend::
        
            EMAIL_BACKEND = 'bandit.backends.HijackBackend'
        
        and set the email which will receive all of the emails::
        
            BANDIT_EMAIL = 'bandit@example.com'
        
        
        Questions or Issues?
        -------------------------------
        
        If you have questions, issues or requests for improvements please let us know on
        `Github <https://github.com/caktus/django-email-bandit/issues>`_.
        
        Development sponsored by `Caktus Consulting Group, LLC
        <http://www.caktusgroup.com/services>`_.
        
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
