Send Form To Email

We are going to show you a quick and simple solution to send contact form data to a email address. It's a quick and easy no-code form-to-email solution.

This comes in handy if you have a static website and don't have a backend server to work with, or you just need a way to get the contact form data emailed to you.

In this quick tutorial you will learn how to create a simple HTML contact form for your website and send the form data to your email address.

Step 1: Open A free fabform account

Sign Up for an account on fabform. It only takes a minute and it's free. You don’t need to provide any credit card info to create an account.

Step 2: Create a Form Endpoint.

In the fabform dashboard, Click "Create EndPoint", and copy the endpoint id for your newly created endpoint.

   

<form action="https://fabform.io/f/{form-id}" method="post">
 <label for="email">Your Email</label>
 <input name="email" type="email">
 <button type="submit">Submit</button> 
</form>

Modify the contact form and paste the endpoint ID into the forms action property.

That is all there is to it. You now have a full working contact form which will send each form submission to your email address.