Metadata-Version: 1.0
Name: django-dev-email
Version: 1.0
Summary: Send all mail to a desired address during development
Home-page: http://github.com/kstateome/django-dev-email
Author: Kansas State University Web Team
Author-email: derekst@ksu.edu
License: MIT
Description: django-dev-email
        ================
        
        Installation
        ------------
        
            pip install django-dev-email
        
        Add the class to your ``EMAIL_BACKEND`` setting
         
         	EMAIL_BACKEND = 'dev_email.backends.development.EmailBackend'
         	
        Add the email address to your settings file
        
        	DEV_EMAIL = 'yourdevaddress@whatever.com'
        	
        	
        Suggestions, Bugs, Comments?  Open a Github issue.
        
        Why?
        ----
        
        This was developed as an alternative to having small if checks to send all mail to a development
         address.  We initially wanted to just override the ``_send`` method, but since it's marked as private,
         we decided to copy the class and rewrite the parts I needed.  We are certainly open to other ways
          and methods of implementing this.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
