Automate Listmonk with AI Agents
Send email campaigns, manage mailing lists, configure templates and preview text, and automate newsletter delivery — all from the command line or through your AI agent.
Please make sure there is always a human in the loop.
Send a Listmonk Campaign in Seconds
Terminal
# Install globally
npm install -g postiz
# Set your API key
export POSTIZ_API_KEY=your_api_key
# Find your Listmonk integration
postiz integrations:list
# Send an email campaign
postiz posts:create \
-c "Email body content..." \
--settings '{"subject":"Weekly Newsletter","preview":"This week in tech...","list":"list-1"}' \
-i "listmonk-id"Listmonk-Specific Features
Email Campaigns
Create and send email campaigns to your subscriber lists with rich HTML content, subject lines, and preview text.
Mailing Lists
Target specific subscriber lists by ID. Send campaigns to the right audience segment every time.
Template Support
Use pre-built email templates by specifying a template ID. Maintain consistent branding across all campaigns.
Preview Text
Set preview text that appears in email clients before the recipient opens the message. Boost open rates with compelling previews.
Newsletter Automation
Automate recurring newsletters with scheduled sends. Let AI agents craft and deliver content on a regular cadence.
Scheduled Delivery
Schedule email campaigns for optimal delivery times. Use ISO timestamps to send at exactly the right moment.
How It Works
Find Your Listmonk Integration
List your connected accounts and grab your Listmonk integration ID. You can also fetch available settings to see what options are supported.
Discovery
# List all integrations
postiz integrations:list
# Filter for Listmonk
postiz integrations:list | jq \
'.[] | select(.identifier=="listmonk")'
# Get Listmonk settings schema
postiz integrations:settings <listmonk-id>Compose Your Email
Write your email body content. The content flag accepts plain text or HTML. Pair it with a subject line and preview text in the settings.
Compose
# Simple text email
postiz posts:create \
-c "Hello subscribers! Here is your weekly update..." \
--settings '{"subject":"Weekly Update","preview":"Big news inside","list":"list-1"}' \
-i "listmonk-id"
# With HTML content
postiz posts:create \
-c "<h1>Newsletter</h1><p>Content here...</p>" \
--settings '{"subject":"March Newsletter","preview":"What happened this month","list":"list-2","template":"tmpl-1"}' \
-i "listmonk-id"Schedule and Send
Schedule your email campaign for a specific time or send immediately. Target a specific list and optionally apply a template for consistent formatting.
Schedule
postiz posts:create \
-c "Don't miss our spring sale!" \
-s "2025-03-01T09:00:00Z" \
--settings '{
"subject": "Spring Sale - 30% Off",
"preview": "Limited time offer inside",
"list": "list-1",
"template": "sale-template"
}' \
-i "listmonk-id"Listmonk Settings Reference
Every Listmonk campaign accepts these platform-specific settings via the --settings flag.
| Field | Type | Description |
|---|---|---|
__type | string | Must be "listmonk" to identify the platform |
subject | string | Email subject line (min 1 character) |
preview | string | Preview text shown in email clients before opening |
list | string | List ID to send the campaign to |
template | string | Template ID to use for the email layout |
Common Configurations
Copy-paste these settings for common Listmonk campaign scenarios.
Weekly Newsletter
settings.json
{
"subject": "Weekly Newsletter - March Edition",
"preview": "This week: new features, tips, and community highlights",
"list": "list-1",
"template": "newsletter-tmpl"
}Product Announcement
settings.json
{
"subject": "Introducing Our New Feature",
"preview": "We've been working on something big...",
"list": "list-2"
}Promotional Campaign with Template
settings.json
{
"subject": "Flash Sale - 48 Hours Only",
"preview": "Up to 50% off everything in store",
"list": "list-3",
"template": "promo-template"
}Plain Text Update
settings.json
{
"subject": "A quick note from the team",
"preview": "Important updates about your account",
"list": "list-1"
}What is OpenClaw?
OpenClaw is the open-source personal AI agent with 145k+ GitHub stars. It runs locally on your machine, connects through apps you already use, and takes real actions on your behalf.
Works Where You Are
Message OpenClaw from WhatsApp, Telegram, Slack, Discord, Signal, iMessage, or 10+ other platforms. No new app to learn.
Skill-Based Architecture
OpenClaw extends its abilities through Skills — lightweight plugins defined in Markdown files. Postiz is available as a skill on ClawHub.
Proactive Automation
Schedule recurring tasks with cron jobs. OpenClaw can send your Listmonk campaigns on a schedule without you having to ask each time.
How Postiz Becomes an OpenClaw Skill
When you install Postiz Agent globally, OpenClaw automatically discovers it by reading the bundled SKILL.md file. This file tells OpenClaw what commands are available, what environment variables are needed, and how to compose Listmonk campaigns with the right settings.
- ✓Install from ClawHub with one command: clawhub install nevo-david/postiz
- ✓OpenClaw reads the SKILL.md and learns all Postiz commands
- ✓Eligibility is checked automatically — POSTIZ_API_KEY must be set
- ✓Skills are loaded on-demand, keeping the agent context clean
- ✓Works with any LLM backend: Claude, GPT, Gemini, Llama, and more
Install from ClawHub
# Install the Postiz skill
clawhub install nevo-david/postiz
# Or install the CLI globally
npm install -g postiz
# Set your API key
export POSTIZ_API_KEY=your_api_key
# Verify OpenClaw sees it
openclaw skills list --eligible
# Output:
# - postiz: Social media automation
# CLI for scheduling posts
# across 30+ platformsListmonk Campaigns with OpenClaw
Message OpenClaw from any platform — it reads the Postiz skill, discovers your Listmonk integration, and handles the entire email campaign workflow autonomously.
From Any Chat App
WhatsApp, Telegram, Slack, Discord...
Send a message to OpenClaw from your favorite chat app. It runs as a persistent daemon on your machine, so it picks up your message, discovers your Listmonk integration via Postiz, composes the email, and sends the campaign — all while you go about your day.
WhatsApp / Telegram
You: Send the weekly newsletter to
list-1 with subject "March Update"
OpenClaw: Got it! Here's what I'll do:
1. Find your Listmonk integration
2. Compose campaign with subject
3. Set preview text and target list-1
Done! Your email campaign is sent.
Post ID: abc-123Scheduled & Proactive
Cron jobs for recurring newsletters
OpenClaw supports cron-based heartbeat tasks. Set up a recurring job that generates newsletter content and sends it to your Listmonk lists automatically — no manual trigger needed.
openclaw.json (heartbeat)
{
"heartbeat": [
{
"cron": "0 8 * * 1",
"prompt": "Compile the latest blog
posts from ~/content/posts into
a weekly newsletter. Send via
Postiz to Listmonk list-1 with
subject 'Weekly Digest' and
preview 'Your weekly roundup'.
Use the newsletter-tmpl template."
}
]
}Why OpenClaw + Postiz for Listmonk
OpenClaw's skill system makes Postiz a natural fit. The agent reads the SKILL.md to understand every available command, then autonomously chains them together for Listmonk email workflows.
- ✓Message from WhatsApp to send a newsletter — no terminal needed
- ✓Cron jobs for hands-free weekly newsletter delivery
- ✓Structured JSON output lets OpenClaw verify each step succeeded
- ✓Template selection applied automatically based on campaign type
- ✓Cross-post email content to Listmonk + social platforms in a single conversation
- ✓Model-agnostic — works with Claude, GPT, Gemini, or open-source LLMs
SKILL.md (auto-discovered)
---
name: postiz
description: Social media automation
CLI for scheduling posts across
30+ platforms including Listmonk
metadata:
openclaw:
requirements:
env:
- POSTIZ_API_KEY
binaries:
- postiz
---
# Available Commands
- postiz integrations:list
- postiz integrations:settings <id>
- postiz posts:create
- postiz upload <file>
- postiz analytics:platform <id>
# Listmonk Settings
subject, preview, list, templateAlso Works with Claude Code
Postiz Agent works as a CLI tool with any AI agent that can execute shell commands — including Anthropic's Claude Code.
Claude Code
by Anthropic
Claude reads the SKILL.md file to learn all available Postiz commands, then autonomously discovers your Listmonk integration, composes your email campaign with subject, preview text, and list targeting, and sends it on schedule.
Claude Code
> Send a newsletter to list-1 about our
new feature launch, schedule for Monday
Claude will automatically run:
postiz integrations:list
postiz posts:create \
-c "<h1>New Feature Launch</h1>..." \
-s "2025-03-03T09:00:00Z" \
--settings '{"subject":
"Exciting New Feature",
"preview":"Check out what we built",
"list":"list-1",
"template":"newsletter-tmpl"}' \
-i "listmonk-id"Listmonk + Other Platforms
Send an email campaign and post to social media simultaneously. Each platform gets its own settings.
Terminal
# Send email and post to social media simultaneously
postiz posts:create \
-c "We just launched our new feature! Check it out." \
-s "2025-03-01T09:00:00Z" \
--settings '{"subject":"New Feature Launch","preview":"Something big is here","list":"list-1"}' \
-i "listmonk-id,twitter-id,linkedin-id"
# Batch schedule a month of newsletters
for week in 1 2 3 4; do
postiz posts:create \
-c "Week $week newsletter content..." \
-s "2025-03-0${week}T08:00:00Z" \
--settings '{"subject":"Weekly Digest - Week '$week'","preview":"Your weekly roundup","list":"list-1","template":"newsletter-tmpl"}' \
-i "listmonk-id"
doneStart sending with Listmonk
Install Postiz Agent and automate your Listmonk email campaigns with AI-powered scheduling and delivery.
Ready to get started?
Grow your social media presence with Postiz.
Schedule, analyze, and engage with your audience.
Open-source social media scheduling tool