django-mass-post-office

Mass Post Office


Keywords
django, post-office, mass-post-office
License
Other
Install
pip install django-mass-post-office==0.0.9

Documentation

Django Mass Post Office

Django Post Office is a simple app to create emailing lists of users and sending emails to them from admin. It depends on django-post-office (without "mass") so please read it's documentation on how to send scheduled emails

Dependencies

Installation

  • Package is available on PyPI, so install with pip or easy_install:

    pip install django-mass-post-office
  • Add post_office and mass_post_office to your INSTALLED_APPS in django's ``settings.py:

    INSTALLED_APPS = (
        # other apps
        "post_office",
        "mass_post_office",
    )
  • Run syncdb:

    python manage.py syncdb
    
  • Set post_office.EmailBackend as your EMAIL_BACKEND in django's settings.py:

    EMAIL_BACKEND = 'post_office.EmailBackend'