Mautic Email Scheduler
ACTIONSchedule a Mautic email for any future date with subject, HTML content, and target segment. One endpoint: POST /schedule.
Endpoints
· 2POST/scheduleSchedules a Mautic email for a future send date
Input Schema
{
"type": "object",
"required": [
"subject",
"htmlContent",
"sendAt",
"segmentId"
],
"properties": {
"sendAt": {
"type": "string",
"description": "ISO 8601 future date string (e.g. 2026-05-01T14:00:00Z)"
},
"subject": {
"type": "string",
"description": "Email subject line"
},
"segmentId": {
"type": "number",
"description": "Mautic segment ID to send to"
},
"htmlContent": {
"type": "string",
"description": "HTML content of the email"
}
}
}GET/test-authDiagnostic endpoint that tests Mautic API authentication (Basic Auth) and returns verbose details about URL, headers, response status, response body, and whether authentication succeeded. Also lists segments if auth works.
Required Secrets
· 3MAUTIC_BASE_URLMAUTIC_PASSWORDMAUTIC_USERNAME
✦
Similar ACTION Pieces
Shared Terminal
Full-featured web terminal with Node.js, Python, Deno, git, and build tools — running in a Podman container with Ubuntu 24.04
Coolify Logs Watcher
Polls Coolify API for application logs, stores in SQLite, exposes search endpoints for support email triage. Monitors free-copier-py, free-copier-express, and free-copier-next runtime logs. Used by the Events pipeline (Sydney) to find relevant errors when drafting support responses.
Coverter
Converts HTML content to PDF using headless Chromium (Puppeteer). Accepts raw HTML or a URL, returns a downloadable PDF.