Documentation

Everything is one HTTPS POST. These pages cover the fields that endpoint understands, the spam controls around it, and worked examples for the stacks people ask about most.

The endpoint

POST https://submit.formemailapi.com/YOUR_FORM_ID

The whole integration

Point the form action at your form’s endpoint. That is the whole integration. That is the entire change to your site.

contact.html
<form action="https://submit.formemailapi.com/YOUR_FORM_ID" method="POST">
  <input type="text" name="name" required>
  <input type="email" name="email" required>
  <textarea name="message" required></textarea>

  <button type="submit">Send</button>
</form>

All pages