An email backend for Django that uses Newsletter2Go transactional emails
The full documentation is at https://django-newsletter2go.readthedocs.org.
Install django-newsletter2go:
pip install django-newsletter2go
Use it in a project by adding this to your settings:
INSTALLED_APPS += ('newsletter2go', ) NEWSLETTER2GO_API_KEY = 'asdf' # Your API key EMAIL_BACKEND='newsletter2go.backends.Newsletter2GoEmailBackend'
Then you can use it as normal with the Django mail module: https://docs.djangoproject.com/en/1.8/topics/email/
- TODO