MakeTheForm
  • 👋Welcome to MakeTheForm
  • Getting Started
    • Installation
    • Reserved Names
    • Premium Features
      • File Attachments
      • Webhooks
Powered by GitBook
On this page
  • Step 1: Get Access Key
  • Step 2: Create HTML form
  • Step 3: Add your access key
  1. Getting Started

Installation

PreviousWelcome to MakeTheFormNextReserved Names

Last updated 11 months ago

Step 1: Get Access Key

The first step is to receive your access key from .

Once you submit the form, you will receive an access key to your email.

Step 2: Create HTML form

Create a form in your website with our form endpoint as the action attribute.

<!-- Plain HTML Example -->
<form action="https://maketheform.com/api/submit" method="POST">

    <!-- Replace with your Access Key here -->
    <input type="hidden" name="apiKey" value="YOUR_API_KEY_HERE">

    <!-- Each input must have "name" attribute -->
    <input type="text" name="name">
    <input type="email" name="email">
    <textarea name="message"></textarea>

    <button type="submit">Send</button>
</form>

Make sure you include "name" attributes and the "apiKey" value

Step 3: Add your access key

Add your api key to start receiving email submissions directly to your email.

 <input type="hidden" name="apiKey" value="YOUR_API_KEY_HERE">

MakeTheForm