A generic application to manage your newsletters
django-courriers has four models:
NewsletterList
which represents a newsletter listNewsletter
which represents a newsletterNewsletterItem
an item of a newsletter. It could be a content-typeNewsletterSubscriber
which represents a user who is subscribed to a newsletter
You have the choice between two backends to manage and send your emails:
SimpleBackend
, a simple backend to send emails with Django and your current smtp configurationMailJetBackend
, a Mailjet backend which uses mailjet library
Download the package on GitHub or simply install it via PyPi
Add
courriers
to yourINSTALLED_APPS
INSTALLED_APPS = ( 'courriers', )
Sync your database using
syncdb
command from django command lineConfigure settings
You have to specify which backend you want to use in your settings
COURRIERS_BACKEND_CLASS = 'courriers.backends.simple.SimpleBackend'
A quick reminder: you can also set your custom DEFAULT_FROM_EMAIL
in Django settings.
A simple backend to send your emails with Django and your current smtp configuration
A backend to manage your newsletters with Mailjet.
- Create an account on Mailjet
- Get your API key and API Secret key
- Add it to your settings with others options as described below
- Install the mailjet library
- Create a list or more if you have users from different countries
With this backend you have to provide additional settings
COURRIERS_MAILJET_API_KEY = 'Your API key' COURRIERS_MAILJET_API_SECRET_KEY = 'Your API Secret key' COURRIERS_DEFAULT_FROM_NAME = 'Your name'