Esta página se muestra en inglés. Una traducción al español está en curso.
SkillsApr 10, 2026·3 min de lectura

Listmonk — Self-Hosted Newsletter & Mailing List Manager

Listmonk is a high-performance, self-hosted newsletter and mailing list manager with a modern dashboard. Single binary, handles millions of subscribers efficiently.

Listo para agents

Staging seguro para este activo

Este activo primero queda en staging. El prompt copiado pide inspeccionar los archivos staged antes de activar scripts, config MCP o config global.

Stage only · 29/100Política: staging
Superficie agent
Cualquier agent MCP/CLI
Tipo
Skill
Instalación
Stage only
Confianza
Confianza: Established
Entrada
step-1.md
Comando de staging seguro
npx -y tokrepo@latest install ed7b1e03-34ae-11f1-9bc6-00163e2b0d79 --target codex

Primero deja archivos en staging; la activación requiere revisar el README y el plan staged.

TL;DR
Listmonk is a self-hosted, Go-based newsletter manager that sends millions of emails without per-subscriber pricing.
§01

What it is

Listmonk is a high-performance, self-hosted newsletter and mailing list manager built with Go and PostgreSQL. It handles subscriber management, campaign creation, templating, analytics, and delivery at scale. The application ships as a single binary with a built-in web UI, making deployment straightforward.

Content creators, businesses, and developers who want to run email campaigns without per-subscriber pricing from Mailchimp, ConvertKit, or Substack benefit most. Listmonk handles millions of subscribers on modest hardware because of Go's performance characteristics.

§02

How it saves time or tokens

Listmonk eliminates recurring SaaS email costs. Commercial newsletter platforms charge $50-500+/month based on subscriber count. Listmonk is free -- you pay only for your SMTP relay (Amazon SES, Postmark, or your own SMTP server). The Go binary uses minimal resources: a single server can manage hundreds of thousands of subscribers. Templating with Go templates and the visual editor reduces the time to create campaigns.

§03

How to use

  1. Deploy Listmonk with Docker:
mkdir listmonk && cd listmonk
curl -sL https://github.com/knadh/listmonk/releases/latest/download/docker-compose.yml -o docker-compose.yml
docker compose up -d
  1. Run the initial setup:
docker compose run --rm app ./listmonk --install
  1. Open http://localhost:9000 and configure your SMTP settings, create subscriber lists, and compose your first campaign.
§04

Example

# Listmonk REST API: Add a subscriber
curl -X POST http://localhost:9000/api/subscribers \
  -u 'admin:password' \
  -H 'Content-Type: application/json' \
  -d '{"email": "user@example.com", "name": "Jane", "lists": [1], "status": "enabled"}'

# Send a campaign via API
curl -X PUT http://localhost:9000/api/campaigns/1/status \
  -u 'admin:password' \
  -H 'Content-Type: application/json' \
  -d '{"status": "running"}'
§05

Related on TokRepo

§06

Common pitfalls

  • Listmonk sends emails but does not provide SMTP delivery. You need an external SMTP service (Amazon SES, Postmark, Mailgun) for reliable email delivery and reputation management.
  • Email deliverability depends on proper DNS setup (SPF, DKIM, DMARC). Without these records, your emails will land in spam. Configure DNS before sending to your full list.
  • The single-binary architecture means upgrades require stopping the service briefly. Plan maintenance windows for version updates.

Preguntas frecuentes

Is Listmonk free?+

Yes. Listmonk is open source under the AGPL-3.0 license. The application is completely free. Your costs are limited to server hosting and SMTP relay fees for email delivery.

How many subscribers can Listmonk handle?+

Listmonk handles hundreds of thousands of subscribers on modest hardware. The Go backend and PostgreSQL database are efficient. Users report running lists with 500K+ subscribers on a single small server.

Does Listmonk support double opt-in?+

Yes. Listmonk supports double opt-in (confirmed opt-in) with customizable confirmation email templates. Subscribers receive a confirmation link before being added to the active list.

Which SMTP services work with Listmonk?+

Listmonk works with any SMTP service: Amazon SES, Postmark, Mailgun, SendGrid, or your own SMTP server. Configure the SMTP settings in the admin UI. Multiple SMTP servers can be configured for failover.

Can I migrate from Mailchimp to Listmonk?+

Yes. Export your subscriber list from Mailchimp as CSV, then import it into Listmonk using the CSV import feature. Campaign templates need to be recreated in Listmonk's template format.

Referencias (3)
🙏

Fuente y agradecimientos

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados