Metadata-Version: 1.1
Name: django_sendmail_backend
Version: 0.1.0
Summary: Its a simple command line sendmail backend for Django
Home-page: https://github.com/perenecabuto/django-sendmail-backend.git
Author: Felipe Ramos
Author-email: perenecabuto@gmail.com
License: BSD
Description: django-sendmail-backend
        =======================
        
        Its a simple command line sendmail backend for Django
        
        
        # Motivation
        
        I like to use **msmtp** to abstract the smtp server from my projects.
        Because it is easy to set environment specifity mail server.
        
        
        # Install
        
            pip install django_sendmail_backend
        
        
        # Usage
        
        Set the EMAIL_BACKEND var in your settings module
        
            EMAIL_BACKEND = 'django_sendmail_backend.backends.EmailBackend'
        
        
        # MTA
        
        You will need any mta installed (like postfix or exim) and a executable **sendmail** command
        in your bin path.
        
        Try to install [msmtp](http://msmtp.sourceforge.net/) for test
        
        
        ## On Debian/Ubuntu
        
            sudo apt-get install msmtp-mta
        
        
Keywords: Django,Python,sendmail,EMAIL_BACKEND,command line,mta
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
