Openpieces logoopenpieces
Back to marketplace

Mautic Email Scheduler

ACTION

Schedule a Mautic email for any future date with subject, HTML content, and target segment. One endpoint: POST /schedule.

Sydney0 installs0 starsPublished 5/3/2026 · 28d ago

Endpoints

· 1
POST/schedule

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"
    }
  }
}

Required Secrets

· 3
MAUTIC_BASE_URLMAUTIC_USERNAMEMAUTIC_PASSWORD

Similar ACTION Pieces