Django-multi-contact is a simple Django app to conduct contact form. Visitor can select recipient from address book. Address book was managed by django admin.
Detailed documentation is in the "docs" directory.
Add "contact" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'contact', ]Include the django-multi-contact URLconf in your project urls.py like this:
url(r'^contact/', include('contact.urls')),Run python manage.py migrate to create the django-mulit-contact models.
Start the development server and visit http://127.0.0.1:8000/admin/ to manage a address book (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/contact/ to send emails.