django-propaganda

Hey you, political leader, founder of a new religion or spiritual guru! With this application, your acolytes will receive the official organizational propaganda pamphlets right into their inboxes. Keep them updated with the Truth!

This simple Django application is made to be used for trivial newsletter (pamphlets) deliveries with your information (propaganda), where you supply the raw content (both plain text and HTML versions) to be delivered. Subscribers (subscribers) will then receive the emails you send.

Contents:

Installation

  1. Install the latest version:

    pip install django-propaganda
    
  2. Add propaganda to your INSTALLED_APPS setting. One possible method:

    INSTALLED_APPS = INSTALLED_APPS + ('propaganda',)
    
  3. If you use South for migration management (you should!) just run the migrations:

    python manage.py migrate propaganda
    
  4. Otherwise, update your database the Django standard way (the good old syncdb):

    python manage.py syncdb