Framework guide

v0 / Bolt / Lovable

AI builders generate gorgeous forms, but they usually don't do anything on submit. ShipMyForm is the missing backend. Two ways to connect it.

Just paste this prompt

Ask your builder to point the existing form at your endpoint:

prompt
Make the contact form submit to this URL with a POST request:
https://shipmyform.com/f/frm_8Kx2mQ9pL4vN

Use the field names "email" and "message". On success, show a
"Thanks, we'll be in touch!" message instead of navigating away.

Or edit the code directly

Find the <form> the AI generated and give it an action and method:

ContactForm.tsx
<form
  action="https://shipmyform.com/f/frm_8Kx2mQ9pL4vN"
  method="POST"
>
  {/* keep the AI-generated inputs — just make sure they have name="email" etc. */}
</form>
Tip: AI builders love to invent field names. Make sure your inputs have a clear nameattribute: that's what shows up in your dashboard and connectors.