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
Package is available on PyPI, so install with pip or easy_install:
pip install django-mass-post-office
Add
post_office
andmass_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 yourEMAIL_BACKEND
in django'ssettings.py
:EMAIL_BACKEND = 'post_office.EmailBackend'