Skip to content

42cc/mass_post_office

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'ssettings.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'

About

django-post_office based mass emailing app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •