skip to navigation
skip to content

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)