Get an endpoint Sign in

Docs Special fields

Bay 03Formspree-compatible

#Special fields

A few field names starting with an underscore change how a submission is handled. They match Formspree’s, so if you’re moving over, changing the URL is the only edit you need. Underscore fields are used and then removed: they aren’t stored with the submission.

Special field names
FieldAlso acceptsWhat it does
_replytoemailSets Reply-To on the notification email, so hitting reply answers the person who wrote in. Must be a valid address.
_subjectNoneThe subject line of the notification email.
_next_redirectWhere to send the visitor after a normal form post. Must be on one of the form’s allowed domains. Redirects.
_gotcha_honeypotA hidden honeypot. If it has anything in it, the submission is treated as spam. Spam protection.
_ccNoneExtra recipients, comma-separated. Only addresses you’ve verified in your account get a copy, so it can’t be used to email strangers.
contact.html
<form action="https://sendm8.com/f/k3x9q2m7ab" method="POST">
  <input type="hidden" name="_subject" value="New enquiry from the website">
  <input type="hidden" name="_next" value="https://yourstudio.com/thanks">
  <input type="hidden" name="_cc" value="team@yourstudio.com">
  <input type="text" name="_gotcha" style="display:none" tabindex="-1" autocomplete="off">

  <label>Your email <input name="_replyto" type="email" required></label>
  <label>Message <textarea name="message"></textarea></label>
  <button>Send</button>
</form>