sendcraft_send_email
Send a single transactional email for order confirmations, password resets, and user-triggered notifications.
Instructions
Send a single transactional email immediately. Use this for order confirmations, password resets, notifications, and any one-off email triggered by a user action.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | CC address (single email) | |
| to | Yes | Recipient email address | |
| bcc | No | BCC address (single email) | |
| from | No | Sender email address (uses account default if omitted) | |
| html | Yes | HTML email body. Include inline styles for best compatibility. | |
| text | No | Plain text fallback body (recommended for deliverability) | |
| subject | Yes | Email subject line | |
| reply_to | No | Reply-To address if different from sender | |
| from_name | No | Sender display name, e.g. "Acme Support" | |
| idempotency_key | No | Unique key to prevent duplicate sends on retry (e.g. "order-123-confirm") |