A generic application to manage your newsletters
Перейти к файлу
Florent Messa 4a043ad190 Merge pull request #5 from kelvan/translation_de
Add german translation
2015-08-18 21:38:52 +02:00
courriers Add german translation 2015-08-18 18:50:31 +02:00
.gitignore gitignore update 2013-11-25 12:46:43 +01:00
.travis.yml Add missing travis.yml 2013-11-28 11:29:09 +01:00
AUTHORS.rst Add AUTHORS 2013-10-25 15:08:23 +02:00
LICENSE Initial commit 2013-10-22 02:41:04 -07:00
MANIFEST.in Add missing recursive include for locale directory 2014-01-24 15:26:29 +01:00
Makefile Use django-separatedvaluesfield standalone repository 2013-12-05 18:32:32 +01:00
README.rst Add Django 1.8 support 2015-04-02 17:09:20 +02:00
manage.py Add tests for views and forms. Convert tabs to spaces 2013-10-22 16:59:15 +02:00
setup.py Use django-separatedvaluesfield standalone repository 2013-12-05 18:32:32 +01:00
tox.ini Add Django 1.8 support 2015-04-02 17:09:20 +02:00

README.rst

django-courriers
================

.. image:: https://secure.travis-ci.org/ulule/django-courriers.png?branch=master
    :alt: Build Status
    :target: http://travis-ci.org/ulule/django-courriers

A generic application to manage your newsletters

Compatibility
-------------

This library is compatible with:

- python2.6, django1.4
- python2.6, django1.5
- python2.6, django1.6
- python2.7, django1.4
- python2.7, django1.5
- python2.7, django1.6
- python2.7, django1.7
- python2.7, django1.8
- python3.3, django1.5
- python3.3, django1.6
- python3.3, django1.7
- python3.3, django1.8
- python3.4, django1.6
- python3.4, django1.7
- python3.4, django1.8

What it does?
-------------

django-courriers has three models:

- ``NewsletterList`` which represents a newsletter list
- ``Newsletter`` which represents a newsletter
- ``NewsletterItem`` an item of a newsletter. It could be a content-type
- ``NewsletterSubscriber`` which represents a user who is subscribed to a newsletter


You have the choice between three backends to manage and send your emails:

- ``SimpleBackend``, a simple backend to send emails with Django and
  your current smtp configuration
- ``MailchimpBackend``, a `Mailchimp`_ backend which uses `mailchimp library`_
- ``MailJetBackend``, a `Mailjet`_ backend which uses `mailjet library`_


Installation
------------

1. Download the package on GitHub_ or simply install it via PyPi
2. Add ``courriers`` to your ``INSTALLED_APPS`` ::

    INSTALLED_APPS = (
        'courriers',
    )

3. Sync your database using ``syncdb`` command from django command line
4. Configure 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.

Backends
--------

courriers.backends.simple.SimpleBackend
........................................

A simple backend to send your emails with Django and
your current smtp configuration

courriers.backends.mailchimp.MailchimpBackend
..............................................

A backend to manage your newsletters with Mailchimp.

courriers.backends.mailjet.MailjetBackend
..............................................

A backend to manage your newsletters with Mailjet.


What you need to do for mailchimp
.................................

- Create an account on Mailchimp
- Get your API key
- Add it to your settings with others options as described below
- Install the `mailchimp library`_
- Create a list or more if you have users
  from different countries

With this backend you have to provide additional settings ::

    COURRIERS_MAILCHIMP_API_KEY = 'Your API key'
    COURRIERS_DEFAULT_FROM_NAME = 'Your name'


What you need to do for 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'

.. _GitHub: https://github.com/ulule/django-courriers
.. _Mailchimp: http://mailchimp.com/
.. _Mailjet: https://eu.mailjet.com/
.. _mailchimp library: https://pypi.python.org/pypi/mailchimp
.. _mailjet library: https://pypi.python.org/pypi/mailjet/