If you are looking for a simple solution, this is not much simpler than fwdform . I wrote this myself when I needed a quick and dirty contact form processing on my own static site.
To get the form sent to your email address, you just need to do the following.
1.Register
Make an HTTP POST request to register your email.
$ curl --data "email=<your_email>" https://fwdform.herokuapp.com/register Token: 780a8c9b-dc2d-4258-83af-4deefe446dee
2. Customize your form
<form action="https://fwdform.herokuapp.com/user/<token>" method="post"> Email: <input type="text" name="name"><br> Name: <input type="text" name="email"><br> Message: <textarea name="message" cols="40" rows="5"></textarea> <input type="submit" value="Send Message"> </form>
You can even run it on your own copy of Heroku if you prefer not to trust a third-party service.
sdobson Feb 02 '14 at 16:05 2014-02-02 16:05
source share