Getting StartedΒΆ

  1. Follow instructions for Installation.

  2. Configure the Settings, if necessary.

  3. Set up the URLs in your urls.py:

    urlpatterns = patterns('',
        (r'^newsletters/', include('newsletters.urls')),
        # ...
    )
    
  4. Make sure your server can send e-mail notifications.

  5. Override the Templates, if necessary.

  6. Write a signal handler for subscription and unsubscription events.