Multimail Demo
Multimail is a Django plugin that manages the creation of multiple verified e-mail accounts for your users.
Create a new user to see multimail in action.
Or login with an existing account
Using multimail is as easy as this:
- pip install django-multimail
- Put 'multimail' in your INSTALLED_APPS
- Include 'django.template.loaders.eggs.Loader' in your TEMPLATE_LOADERS
- Include a line like this in your base urls.py:
(r'^mail/', include('multimail.urls')),
- syncdb
You will also want to be sure to:
- have email sending configured (see: Sending e-mail in Django)
- have Sites configured (see: The "sites" framework in Django)
- optionally expose messages in your templates (see: The messages framework in Django)