Skip to main content
================
Django-mailchimp-forms
================

Django-mailchimp-forms is a django tool that helps with the integration of web
applications with Mailchimp. With django-mailchimp-forms you will be able to add and
remove user emails to a mailchimp mailing list with minimum effort.

Installing
==========

You can install the latest version of django-mailchimp-forms running
``pip install django-mailchimp-forms`` or ``easy_install django-mailchimp-forms``
You can also install the `in-development version`_ of django-mailchimp-forms with
``pip install django-mailchimp-forms==dev`` or ``easy_install django-mailchimp-forms==dev``.

.. _in-development version: http://code.indifex.com/django-mailchimp-forms/get/tip.tar.gz#egg=django-mailchimp-forms-dev

Features
========

* utility methods that use the module chimpy to communicate with mailchimp.com
and add/remove emails
* form wrappers to enhance your registration form so that it contains a
'newsletter' checkbox and registers the user's email to mailchimp.com on save()
* views that logged-in users can navigate to register/unregister themselved
from the mailing list

Form enhancement
================

In order to be able to register users with newsletter functionality using
django-mailchimp-forms you have 3 options:

1. The default form:

The default form contains fields for: *username*, *password*, *password
confirmation*, *email*, *newsletter*. (In fact it is a
django.contrib.auth.forms.UserCreationForm wrapped with the django-mailchimp-forms
form wrapper).

It is used in a view like this:

::

from django_mailchimp_forms.forms import ChimpyForm

def register(request):
if request.method == 'POST':
form = ChimpyForm(request.POST)
if form.is_valid():
newuser = form.save()
return HttpResponseRedirect('profile_page', user_id=newuser.id)
else:
form = ChimpyForm()
return render_to_response('register.html', {'form': form})

2. The form class wrapper:

You can use this if you have already defined a form for registration or if you
are currently using a registration form from another django app
(django-registration, django-userprofile, etc). The only requirement of the
initial form is that it defines a 'save' method that creates and returns the
newly created User instance.

::

from registration import RegistrationForm
from django_mailchimp_forms.forms import chimpy_form_class_wrapper

form_class = chimpy_form_class_wrapper(RegistrationForm)
def register(request):
if request.method == 'POST':
form = form_class(request.POST)
if form.is_valid():
newuser = form.save()
return HttpResponseRedirect('profile_page', user_id=newuser.id)
else:
form = form_class()
return render_to_response('register.html', {'form': form})

3. The form instance wrapper:

If you are already use a form instance you can 'enhance' it as well with
newsletter capabilities. Note: the wrapper function takes a second optional
'data' argument that should be the POST dictionary in case the form is supposed
to be bound to post data.

::

from registration import RegistrationForm
from django_mailchimp_forms import chimpy_form_instance_wrapper

def register(request):
if request.method == 'POST':
form = RegistrationForm(request.POST)
form = chimpy_form_instance_wrapper(form, request.POST)
if form.is_valid():
newuser = form.save()
return HttpResponseRedirect('profile_page', user_id=newuser.id)
else:
form = form_class()
form = chimpy_form_instance_wrapper(form)
return render_to_response('register.html', {'form': form})

Views
=====

There are 2 views, one to register a user to a mailing list and one to
unregister. The views require HTTP POST request methods and support both AJAX
and non-AJAX requests. In the case of an AJAX request, the view will return a
JSON string with 'success'(boolean) and 'message'(string) attributes while in
the case of a non-AJAX request, the view will redirect to the path designated
by the 'next' GET variable and an appropriate message will be added to the
relevant user's message set.

Release files for django-mailchimp-forms 0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for django-mailchimp-forms 0.2
File Size Uploaded
django-mailchimp-forms-0.2.tar.gz 7.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for django-mailchimp-forms 0.2
File Interpreter ABI Platform
django_mailchimp_forms-0.2-py2.7.egg Legacy Egg format - - Details

Total release size: 24.9 kB

Release files / django-mailchimp-forms-0.2.tar.gz

Download URL django-mailchimp-forms-0.2.tar.gz
Size 7.5 kB
Tags Source
SHA-256 checksum
How to use checksums
81601ea64fb847debac147432d0eaf5265e7df92cffd4913c9ef48dda85b77b8
BLAKE2b-256 checksum
How to use checksums
e060f31c909304cc3e77cb87b519493f1267fc89ee7606ac115226878cbb0cea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / django_mailchimp_forms-0.2-py2.7.egg

Download URL django_mailchimp_forms-0.2-py2.7.egg
Size 17.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
e3e2f85914d8447b6480bbd0dc188966571d0238130786710f6ee24109291d1b
BLAKE2b-256 checksum
How to use checksums
59eb4c5d410f191a8602e98d485345fdf3f0710d0903a2f7ab4c94eefdcecc0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.2 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page