Send Email
send_emailSend an email from one of your mailboxes. Specify domain and slug to identify the sender mailbox. Supports text and/or HTML body, CC/BCC, attachments (base64), and threading via In-Reply-To/References. Rate limited to 100 sends per hour per mailbox. API: POST /api/emails/{address}/send.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | CC recipient(s) | |
| to | Yes | Recipient email address(es) | |
| bcc | No | BCC recipient(s) | |
| html | No | HTML body | |
| slug | Yes | Sender mailbox slug, e.g. hello or k7x9m2 | |
| text | No | Plain text body | |
| domain | Yes | Sender mailbox domain, e.g. mysite.com or domani.run | |
| subject | No | Email subject line | |
| reply_to | No | Reply-to email address | |
| references | No | Space-separated Message-ID chain (for threading) | |
| attachments | No | File attachments (max 10, max 40MB total) | |
| in_reply_to | No | Message-ID of the email being replied to (for threading) | |
| idempotency_key | No | Unique key to prevent duplicate sends. If a message with this key was already sent from this mailbox, the original result is returned. | |
| allow_risky_content | No | Deprecated compatibility field. Public HTTPS third-party auth links are allowed with a warning; objective safety blocks cannot be overridden |