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.
integrations · site builder
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
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.
<!-- 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
One inbox per publication. You get a form endpoint and a project email address like yourblog@mailcontact.app straight away.
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.
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
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.
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.
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
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.
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.
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.
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
Forms and a real email address, together, with notifications where you live. Launching soon. Be the first to know.