Skip to content

titodrew/communico

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Communico

Communico is a simple Django app for contact forms.

Quick start

  1. Install "communico" from PyPI:

    pip install communico

  2. Add "communico" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'communico',
    ]
  3. Add the following email settings to your settings file:

    EMAIL_HOST = ''
    EMAIL_HOST_USER = ''
    EMAIL_HOST_PASSWORD = ''
    EMAIL_USE_TLS = True
    EMAIL_PORT = 587
  4. Include the communico URLconf in your project urls.py like this:

    url(r'^contact/', include('communico.urls', namespace='communico')),
  5. Start the development server and visit http://127.0.0.1:8000/contact/ to view the contacts form.
  6. Communico comes with a basic html and no styling, please tweak as needed.

About

Communico is a simple Django app for contact forms.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published