Documentation

Everything you need to know about integrating FormReceiver with your website.

Getting Started

FormReceiver provides a simple endpoint for each form receiver you create. To get started:

  1. Create an account and choose a subscription plan
  2. Create a new form receiver in your dashboard
  3. Use the provided endpoint URL in your HTML form
HTML Forms Integration

Integrate FormReceiver with a standard HTML form:

<form action="https://formreceiver.com/receivers/YOUR_RECEIVER_ID/submit/" method="POST">
    <input type="text" name="name" placeholder="Name" required>
    <input type="email" name="email" placeholder="Email" required>
    <textarea name="message" placeholder="Message" required></textarea>
    <button type="submit">Send</button>
</form>