NOTE: This project is not being actively maintained. Please see the fork at github.com/asm-products/formspree for further development, and join the discussion at assembly.com/formspree.
Functional HTML forms
Just send your form to our URL and we'll forward it to your email. No PHP, Javascript or sign up required — perfect for static sites! Example:
<form action="//forms.brace.io/[email protected]">
<input type="text" name="name">
<input type="email" name="_replyto">
<input type="submit" value="Send">
</form>
Setting it up is easy and free. Here's how:
You don't even have to register.
Change your form's action-attribute to this and replace [email protected] with your own email.
If you don't have an HTML form, create one using Brace.io.
Go to your website and submit the form once. This will send you an email asking to confirm your email address, so that no one can start sending you spam from random websites.
From now on, when someone submits that form, we'll forward you the data as email.
Form inputs can have specially named name-attributes, which alter functionality. They are all prefixed with an underscore.
This value is used for the email's Reply-To field. This way you can directly "Reply" to the email to respond to the person who originally submitted the form.
By default, after submitting a form the user is shown the Formspree "Thank You" page. You can provide an alternative URL for that page.
This value is used for the email's subject, so that you can quickly reply to submissions without having to edit the subject line each time.
This value is used for the email's CC Field. This lets you send a copy of each submission to another email address.
Add this "honeypot" field to avoid spam by fooling scrapers. If a value is provided, the submission will be silently ignored. The input should be hidden with CSS.
You can use Formspree via AJAX. This even works cross-origin. The trick is to set the Accept header to application/json. If you're using jQuery this can be done like so:
$.ajax({
url: "//forms.brace.io/[email protected]",
method: "POST",
data: {message: "hello!"},
dataType: "json"
});
You'll need python 2.7 and should install pip, and create a virtual environment for the server.
Once your environment is setup, clone the source and cd into the root of the Brace Forms repository. Then run:
pip install -r requirements.txt
then
python manage.py runserver
You will need to install the heroku toolbelt.
Once your environment is setup, clone the source and cd into the root of the Brace Forms repository. Then run:
heroku apps:create [your project name]
then
git push heroku
Your new project will be running at [your project name].herokuapp.com.
Brace Forms requires Redis. If you're deploying to heroku you can get an addon, such as redistogo. To install redistogo into your project just run the command:
heroku addons:add redistogo
Brace Forms also requires a mailgun account to send the emails. You'll need to add the api keys to your environment variables. See the configuration settings below.
Take a look at the forms/settings.py
file for a list of environment variables that should be set in order for Forms to work correctly.