send_email
Send a single email through the SendHustle API with support for HTML, plain text, CC/BCC, attachments, scheduling, tags, and custom headers, letting AI agents deliver messages directly.
Instructions
Send a single email through SendHustle (POST /emails). Supports HTML and/or plain text, CC/BCC, reply-to, scheduling, attachments, tags, and custom headers. The "from" address must be on a verified domain; if omitted, the server default sender is used.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | ||
| to | Yes | Recipient address(es), max 50. | |
| bcc | No | ||
| from | No | Sender, e.g. "Acme <hi@yourdomain.com>". Defaults to the configured sender. | |
| html | No | HTML body (provide html and/or text). | |
| tags | No | Key/value tags for tracking. | |
| text | No | Plain-text body (provide html and/or text). | |
| headers | No | Custom email headers. | |
| subject | Yes | Subject line. | |
| reply_to | No | Reply-to address(es). | |
| attachments | No | File attachments. | |
| scheduled_at | No | ISO 8601 timestamp or natural language (e.g. "in 1 hour"). | |
| idempotency_key | No | Idempotency-Key header to prevent duplicate sends. |