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.