Metadata-Version: 1.1
Name: django-mail-save
Version: 0.0.5
Summary: Save outgoing mail to the database
Home-page: https://github.com/bigmassa/django_mail_save
Author: Stuart George
Author-email: stuart.bigmassa@gmail.com
License: MIT
Description: ================================
        Django Mail Save
        ================================
        
        Saves all emails sent to the database and can be viewed in django's admin interface.
        Includes attachments and alternative email formats such as text/html.
        
        Tests and more backends to follow. Also to follow is the abilit to resend emails, create new etc.
        
        Installation
        ============
        Installation with ``pip``::
        
            $ pip install django_mail_save
        
        
        Setup
        =====
        Add the following apps to the ``INSTALLED_APPS``::
        
            INSTALLED_APPS = (
                ...
                'mail_save',
                ...
            )
        
        Override the EMAIL_BACKEND in settings.py::
        
            EMAIL_BACKEND = 'mail_save.backends.smtp.EmailBackend'
        
        Add mail_save urls in urls.py::
        
            url(r'^mail_save/', include('mail_save.urls', namespace='mail_save')),
        
        Attachments are saved using django's FileField so be sure to setup your MEDIA_ROOT AND URLS
        
        
Keywords: mail,save,email,admin
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: System :: Logging
Classifier: Topic :: Communications :: Email
