Extensible contacts form implemented in class-based views. Forked from django-contact-form
Tested with Django >=1.4.
Uses django-templated-email to send mail by default.
Add 'contact_form'
to your INSTALLED_APPS
:
# settings.py INSTALLED_APPS = ( ... 'contact_form', ... )
Add application urs to your urlconf. Example:
# urls.py urlpatterns += patterns('', (r'', include('contact_form.urls')), )