DEV Community

irishgeoff9
irishgeoff9

Posted on

send form to email

When you create your next website just remember you don't have to program every feature you need.

If you want a quick way to get your HTML contact form submissions.

With just a few lines of HTML code. You can create a contact form for your website , that will send the form data to an email.

<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>

Enter fullscreen mode Exit fullscreen mode

You just need to create a free account on the [static website forms] backend fabform.io

Read more about it here.

[Here is how to send form to email

Top comments (0)