Add a custom contact form to Shopify using FormsList.
TL;DR
Add a custom contact form to your Shopify store without installing apps. Create a FormsList endpoint, add an HTML form to a Shopify page, and receive submissions with email notifications and spam protection.
Sign up at formslist.com and create a form called "Shopify Contact".
Go to Online Store > Pages > Add page. Switch to HTML mode.
<form action="https://formslist.com/f/YOUR_HASH" method="POST">
<label>Name</label>
<input type="text" name="name" required />
<label>Email</label>
<input type="email" name="email" required />
<label>Message</label>
<textarea name="message" rows="5" required></textarea>
<input type="hidden" name="_redirect" value="https://your-store.myshopify.com/pages/thanks" />
<button type="submit">Send Message</button>
</form>Create another page at /pages/thanks with a confirmation message.
Visit the page, submit a test message, and check your FormsList dashboard.
Add a fully functional contact form to any HTML website in under 5 minutes. No JavaScript frameworks, no server setup — just plain HTML that works everywhere.
Learn moreSet up email notifications for every form submission on your website. Receive form data directly in your inbox without running a mail server.
Learn moreSet up your form backend in under a minute. No server required, no complex configuration — just a simple endpoint for your forms.