Getting started

Create a project, embed a form, and receive your first submission in under five minutes.

1. Create an organization

Sign up for a Reachase account and create an organization from the dashboard. Each organization receives a unique slug used in embed URLs.

2. Add the embed

Create a contact form in the dashboard, copy the iframe snippet, and paste it into any page where you want the form to appear. Embeds are served from http://localhost:3001.

index.htmlEmbed
<iframe
  src="http://localhost:3001/embed/form/{orgSlug}/{formSlug}"
  width="100%"
  height="520"
  frameborder="0"
  title="Contact form"
></iframe>

3. Configure your form

Define fields, validation rules, and notification settings in the dashboard. Changes propagate to the embed without redeploying your site.

  • Add text, email, number, phone, select, checkbox, and consent fields.
  • Customize appearance with presets and color controls.
  • Route submissions to email or a webhook endpoint.

4. Receive submissions

Submissions appear in the dashboard immediately. For production workflows, configure a webhook to sync data into your own database or use the REST API.