Embeds

Add Reachase contact forms and scheduling widgets to any site with iframe embeds.

How embeds work

Each widget is hosted on the ingest service at http://localhost:3001 and embedded on your site with a simple iframe snippet. Copy the embed URL from your dashboard, paste it into your HTML, and submissions or bookings post directly to Reachase.

Contact form

Replace {orgSlug} with your organization slug and {formSlug} with the form slug from the dashboard. Customize colors, fonts, and button labels from the Appearance tab before publishing.

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

Scheduling

Mount a booking widget for a specific event type. Availability and timezone handling are managed in the dashboard.

scheduling.htmlScheduling
<iframe
  src="http://localhost:3001/embed/schedule/{orgSlug}/{eventSlug}"
  width="100%"
  height="640"
  frameborder="0"
  title="Book a meeting"
></iframe>

Customization

  • Match your brand with appearance presets and custom colors in the dashboard.
  • Hide the Reachase badge on paid plans.
  • Use webhooks to react to submissions and bookings in your own stack.