Beginner4 min readUpdated Mar 27, 2026

How to Add a Custom Contact Form to Shopify (No App Required)

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.

By Vaibhav Jain·Published March 27, 2026

Prerequisites

  • Shopify store
  • FormsList account (free)
1

Create a FormsList endpoint

Sign up at formslist.com and create a form called "Shopify Contact".

2

Add a custom page

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>
3

Create a thank-you page

Create another page at /pages/thanks with a confirmation message.

4

Test

Visit the page, submit a test message, and check your FormsList dashboard.

Frequently Asked Questions

Ready to collect form submissions?

Set up your form backend in under a minute. No server required, no complex configuration — just a simple endpoint for your forms.