django-email-services 1.0.0
A Django app providing email backends and respective service objects for some of the most well known email services like Amazon SES and Critsend
Email services for django providing various backends (future plans include respective statistics).
Installation
From PyPI using pip:
pip install django-email-services
The email services package can also be installed from the repository:
pip install -e hg+http://bitbucket.org/pagles/django-email-services#egg=django-email-services
Add the 'email_services' application to your installed apps and set the following in your settings file:
# Replace BackendName with CritsendEmailBackend or PostmarkEmailBackend or AmazonSESBackend
EMAIL_BACKEND = 'email_services.backends.BackendName'
EMAIL_SERVICES_CLIENT_ID = 'your id'
EMAIL_SERVICES_CLIENT_KEY = 'your key'
Use as a typical email backend
Version 1.0
- Support for critsend API (sending)
- Support for postmark API (sending)
- Support for amazon SES API (sending)
- Author: Yorgos Pagles
- Home Page: http://django-email-services.readthedocs.org/
- Keywords: django,mailing
- License: BSD License
- Categories
- Package Index Owner: pagles
- DOAP record: django-email-services-1.0.0.xml
