Email Sender
ACTIONSMTP email sender with threading support. Used by the Events pipeline to send support email replies with In-Reply-To headers for proper threading.
Endpoints
· 1POST/sendSends an email via SMTP
Input Schema
{
"type": "object",
"required": [
"to",
"subject",
"body"
],
"properties": {
"to": {
"type": "string",
"description": "Recipient email address"
},
"body": {
"type": "string",
"description": "Plain text email body"
},
"subject": {
"type": "string",
"description": "Email subject line"
},
"inReplyTo": {
"type": "string",
"description": "Message-ID this email is replying to (optional)"
},
"references": {
"type": "array",
"items": {
"type": "string"
},
"description": "Reference message IDs (optional)"
}
}
}Required Secrets
· 6SMTP_HOSTSMTP_PORTSMTP_USERSMTP_PASSWORDSMTP_FROM_NAMESMTP_FROM_EMAIL
✦
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.