Scheduled Send
scheduleQueue emails for later delivery, list pending scheduled sends, or cancel one by ID. Manage future email dispatch from your inbox.
Instructions
Queue mail for later delivery, and manage what is queued.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | Cc addresses. | |
| id | No | Scheduled send UUID from a create or list call. Alias: scheduled_send_id. | |
| to | No | Recipient addresses. | |
| bcc | No | Bcc addresses. | |
| body | No | Plain-text body. Sent as multipart/alternative when html_body is given too. | |
| inbox | No | Inbox email address; an alternative to inbox_id, which wins when both are given. | |
| limit | No | Results per page. | |
| action | Yes | Operation to run. create = queue to, subject and body for send_at; list = pending scheduled sends; cancel = a pending send by `id`, alias `scheduled_send_id`. | |
| send_at | No | Send time, in the future and carrying a timezone (e.g. '2026-06-01T09:00:00+02:00'). The dispatcher runs every minute, so delivery can be up to 60s late. | |
| subject | No | Subject line. | |
| inbox_id | No | Inbox UUID. Optional when the key has exactly one inbox. Otherwise pass this or `inbox`; omit both and the error lists every inbox_id. | |
| reply_to | No | Reply-To address. | |
| html_body | No | Optional HTML body. | |
| attachments | No | File attachments, 10 MB total. | |
| idempotency_key | No | Opaque key for one operation, outbound or mailbox mutation. Reuse it only when retrying the identical request within 24 hours: the retry is collapsed, not repeated, which matters most for copy. Reuse with different arguments is rejected; omit it for normal behaviour. | |
| scheduled_send_id | No | Alias of `id`; pass either one. |