Quickstart
Create an endpoint and receive your first submission in about two minutes.
- Create an account and click New form. Give it a name — you'll get a unique endpoint URL.
- Point your form's
actionat the endpoint:
HTML
<form action="https://useformy.net/f/your-form" method="POST"> <input type="email" name="email" required /> <textarea name="message"></textarea> <button type="submit">Send</button> </form>
Or send a test submission straight from your terminal:
cURL
curl -X POST https://useformy.net/f/your-form \
-H "Content-Type: application/json" \
-d '{ "email": "you@example.com", "message": "Hello!" }'That's it. The submission appears in your dashboard inbox, you get an email notification, and any webhooks you've configured fire immediately.