Self-hosted newsletter/mailing-list manager — single Go binary.
Listmonk relays via SMTP — point it at MailKite's SMTP relay for delivery.
A minimal, copy-paste starter. Swap in your own domain and API key.
import { MailKiteClient } from "@mailkite/client";
// One API, your own DKIM-signed domain — no mail server to run
const mailkite = new MailKiteClient({ token: process.env.MK_API_KEY! });
await mailkite.send({
from: "you@yourdomain.com", // any address on a verified domain
to: "user@example.com",
subject: "Hello from Listmonk",
html: "<p>Sent in milliseconds via MailKite.</p>",
}); Listmonk is a high-performance open-source newsletter and mailing-list manager (AGPL, single Go binary + PostgreSQL). It's the leading self-hosted Mailchimp alternative, with multi-threaded multi-SMTP queues, SQL-based segmentation, and transactional API.
Open source (self-host)
Point a domain, drop in a webhook URL, and send your first email in minutes. Unlimited domains, no credit card.