How to Create a Contact Form for Your Static Site in 5 Minutes
Adding a contact form to a static site used to be a complex task requiring backend servers and databases. Not anymore! With NoCodeSubmit, you can have a fully functional contact form up and running in minutes, with just HTML.
Quick Start Example
Here’s all you need to add a contact form to your site:
<form action="https://api.nocodesubmit.com/[email protected]" 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>Just replace [email protected] with your actual email address and you’re ready to go!
How It Works
- Point your form to NoCodeSubmit
    - Set the form’s actiontohttps://api.nocodesubmit.com/[email protected]
- Use POSTas the form method
 
- Set the form’s 
- First Submission
    - Submit the form once to receive a confirmation email
- Click the activation link to verify your email
- This prevents spam and ensures secure delivery
 
- Start Receiving Submissions
    - All future form submissions will be sent to your email
- Clean, formatted messages that are easy to read
- No spam, no complexity
 
Next Steps
Want to customize your form further? Check out these guides:
