Metadata-Version: 1.1
Name: kn-django-db-email-backend
Version: 0.5.1
Summary: Django email backend for storing messages to a database.
Home-page: https://github.com/KUWAITNET/django-db-email-backend
Author: Ramez Ashraf
Author-email: ramez@kuwaitnet.com
License: MIT License
Description: Django DB Email Backend
        =======================
        
        Initially, Django email backend for storing messages to a database. This is intended to be used in developement in cases where you
        want to test sending emails, but don't want to send real emails and don't have access to the console output (such as on
        a remote server).
        
        As this KUWAITNET fork, package has been updated and introduced `SMTPDBEmailBackend` which is a mixture between SMTP and DB mail backend,
        it writes to the database then send the email over smtp, if any errors happen while sending it is reflected in the email model.
        Also Package is now production ready.
        
        Access to Email message content is allowed only for super user as this might be a security hazard.
        
        To install::
        
            pip install django-db-email-backend
        
        
        In settings.py::
        
            INSTALLED_APPS += ['db_email_backend']
            EMAIL_BACKEND = 'db_email_backend.backend.DBEmailBackend'
            # or
            # EMAIL_BACKEND = 'db_email_backend.backend.SMTPDBEmailBackend'
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
