send_email
Send emails from a specified account with support for replies, threading, CC, BCC, attachments, and HTML content.
Instructions
Send an email using the specified account. Supports replying to emails with proper threading when in_reply_to is provided.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | A list of CC email addresses. | |
| bcc | No | A list of BCC email addresses. | |
| body | Yes | The body of the email. | |
| html | No | Whether to send the email as HTML (True) or plain text (False). | |
| subject | Yes | The subject of the email. | |
| reply_to | No | Email address to set as the Reply-To header. When set, email clients will reply to this address instead of the From address. | |
| recipients | Yes | A list of recipient email addresses. | |
| references | No | Space-separated Message-IDs for the thread chain. Usually includes in_reply_to plus ancestors. | |
| attachments | No | A list of absolute file paths to attach to the email. Supports common file types (documents, images, archives, etc.). | |
| in_reply_to | No | Message-ID of the email being replied to. Enables proper threading in email clients. | |
| account_name | Yes | The name of the email account to send from. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |