Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ousenko/simple-contact-form
Simple contact form for a static website
https://github.com/ousenko/simple-contact-form
Last synced: 5 days ago
JSON representation
Simple contact form for a static website
- Host: GitHub
- URL: https://github.com/ousenko/simple-contact-form
- Owner: ousenko
- Created: 2014-08-30T12:35:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-10T17:26:49.000Z (about 6 years ago)
- Last Synced: 2024-08-02T12:47:04.310Z (3 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 11
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - ousenko/simple-contact-form - Simple contact form for a static website (others)
README
Simple contact form processing
----------------------------------You have a static website (e.g. Jekyll), and wanna give your visitors the ability to reach you, huh?
No problem!All we need is [Mandrill](http://mandrillapp.com) and [Heroku](http://heroku.com) accounts, and a bit of python to get it work.
0. Assumptions
--------------------You have:
* Heroku toolbelt installed
* Active Mandrill account and API KEY1. Create a heroku web app
---------------------```bash
$ git clone https://github.com/ousenko/simple-contact-form.git
$ heroku create
$ heroku config:set MANDRILL_API_KEY=
$ heroku config:set USER_EMAIL=
$ heroku config:set USER_SITE=
$ heroku config:set SUCCESS_PAGE=
```2. Front-end setup
-------------------In your form html code specify the following:
```html
Email:
Name:
Subject:
Message:
```3. Enjoy
----------Don't forget to star this repo! ;)