integrations · site builder

A contact form for Ghost, which has no way to receive one.

Ghost will take an email address off a visitor and turn it into a member. That is the only inbound path it has. There is no contact form, no form block in the editor, and nothing in the admin that stores a message someone typed to you. The standard workaround is to publish your email address on a contact page, which is how you end up on every scraper's list within a fortnight.

The fix is not a plugin, because Ghost does not have those. It is markup. Paste a form into an HTML card, a page, or your theme, point it at a mailcontact endpoint, and messages land in your project inbox with a ping in Discord, Slack, email, or a webhook.

the snippet

A working form for Ghost, in one paste.

Point the form at your project's mailcontact endpoint. Submissions land in your project inbox. No server, no API route, no email service to wire up.

HTML card, or themes/your-theme/page-contact.hbs
<!-- Editor: insert an HTML card and paste this in.
     Theme: drop it into page-contact.hbs and publish a page
     with the "contact" slug. Either works; the card needs no theme edit. -->

<form action="https://mailcontact.app/api/forms/your-form-id" method="POST">
  <input type="text" name="name" placeholder="Your name" required />
  <input type="email" name="email" placeholder="you@email.com" required />
  <textarea name="message" placeholder="What's on your mind?" required></textarea>

  <!-- Honeypot: bots fill it, humans never see it. -->
  <input type="text" name="_gotcha" tabindex="-1" autocomplete="off" hidden />

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

how it works

Three steps, start to finish.

01

Create an inbox

One inbox per publication. You get a form endpoint and a project email address like yourblog@mailcontact.app straight away.

02

Paste it into a page

In the editor, add an HTML card to a new page called Contact and paste the form. If you would rather it live in the theme, put it in page-contact.hbs instead. The card route needs no theme access at all.

03

Get notified

Add a Discord, Slack, email, or webhook channel. A reader's message reaches you without you logging into Ghost admin to find it.

why mailcontact

Built to pair well with Ghost.

Ghost has no plugin system to fight

There is no marketplace to search and no extension to keep compatible across Ghost upgrades. An HTML card is a supported, first-class thing in the editor, so this survives every future version by construction.

Members are not messages

Ghost's signup form creates a member and sends them a magic link, which is the wrong shape for someone asking a question. A reader who wants to talk to you should not become a subscriber as a side effect.

Your address stays off the page

The alternative to a form on Ghost is publishing your email in plain text where every harvester on the internet can read it. A form gives readers the same reach with none of that.

faq

Ghost + mailcontact, answered

Does Ghost have a built-in contact form?

No. Ghost's only inbound form is member signup, which captures an email address to create a subscriber. There is no field for a message, and nothing in Ghost admin stores one. Every contact page on a Ghost site is either a published email address or an embedded third-party form.

Do I need to edit my theme?

No. The HTML card in the editor is enough: create a page, insert the card, paste the markup, publish. Editing page-contact.hbs is only worth it if you want the form to appear on several pages or to be styled by your theme's own CSS classes.

Can I use this on Ghost(Pro)?

Yes. The HTML card route needs no file access, so it works identically on Ghost(Pro) and self-hosted. Even on Ghost(Pro), where theme uploads are allowed, the card is the simpler path for a single contact page.

Can I style it with my theme's classes?

Yes. It is plain markup inside your page, so add whatever class names your theme uses on its own inputs and buttons and it inherits the same styling. mailcontact only reads the name attributes: email and message are required, name and subject are optional.

related

Also works with

One inbox for every Ghost project you ship.

Forms and a real email address, together, with notifications where you live. Launching soon. Be the first to know.

No spam. It's kind of our thing.