Simple newsletter application for Django framework.
Project description
Informant is simple yet flexible app for common newsletter-sending functionality which lot of sites need to offer. It only provides one common newsletter with opt-in/opt-out and features management command for mail sending (HTML/text alternative).
Installation
Standard Django way:
pip install django-informant
Add to your INSTALLED_APPS:
INSTALLED_APPS = ( .. .., 'informant', ... )
Set e-mail address to set newsletters from in your settings.py:
NEWSLETTER_EMAIL = 'your@example.com
Usage
Templates
Informant provides few default templates to start with but it’s usually better to make your own - customized. These are:
informant/management/subscribe_ok.html - template to render when subscription is OK
informant/management/subscribe_error.html - template to render when there was an error
informant/management/unsubscribed.html - template to render when user has unsubscribed
informant/mail/newsletter.html - base template with e-mail structure
informant/mail/base.txt - text alternative that should point out to the web version of the newsletter
Informant uses newsletter text as Django template. It’s therefore usefull to create basic blocks in informant/mail/newsletter.html and then extend from it in the newsletter administration and override only specific block like you would do in real templates. E.g.:
In informant/mail/newsletter.html:
{% load i18n %} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{% trans "lang" %}" lang="{% trans "lang" %}"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>{% block head %}{% endblock %}</title> </head> <body> {% block content %}{% endblock %} </body> </html>
In Newsletter object content field:
{% extends "informant/mail/newsletter.html" %} {% block title %}My title{% endblock %} {% block content %}My content{% endblock %}
Ajax subscription
If you don’t want separate page with subscription form, Informant has a jQuery plugin which will take care.
It is called on the <form> elements. It expects that form has correctly set up the action attribute pointing to the right URL. See example:
<form id="newsletterSubscribeForm" action="{% url "informant_subscribe" %}" method="post"> <div> <label for="email">Enter your e-mail:</label> <div id="newsletterSubscribeResult"></div> {% csrf_token %} <input type="email" name="email" /> <input type="hidden" name="surname" value="" /> </div> <div> <input type="submit" value="Subscribe" class="button" /> </div> </form> <script type="text/javascript"> // JavaScript handler var subscribeForm = $('#newsletterSubscribeForm'); subscribeForm.informantSubscribeForm({ renderResults: true, resultContainer: $('#newsletterSubscribeResult') }); subscribeForm.bind('informantSubscribeOk', function () { $(this).find('input').hide(); }); </script>
The Javascript plugin by default doesn’t render any results. If you want it to, supply configuration as seen above. Plugin will fire informantSubscribeOk and informantSubscribeError events in case of successfull or invalid subscription respectively. You can bind to these using jQuery’s .bind() method.
Sending
Informant provides send_newsletter command that will send newsletters using the email backend from your Django settings.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-informant-1.0.3.tar.gz
.
File metadata
- Download URL: django-informant-1.0.3.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcba69e61b23bbe611bf9a2ab4d8f68d22eb66a7ac3ebdf33c18f7fee00e79b7 |
|
MD5 | 1ea02ddfe77c2f6c8c4d0e50cb02e0c5 |
|
BLAKE2b-256 | be3f400dfce345e985bdc83f20876ef0cf5f6a6ce4c475585280aadca4591201 |