Django-CMS contact form plugin with default Django email integration
The following HTML fields can be added to the form:
Install package:
pip install cmsplugin-contact-form
Add app to settings.py
:
INSTALLED_APPS = (
...
'cmsplugin_contact_form',
...
)
Run migration:
python manage.py migrate cmsplugin_contact_form