send_email
Send emails with attachments, CC, BCC, and HTML formatting. Supports replying to existing threads by providing the Message-ID for proper threading.
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 |
|---|---|---|---|
| account_name | Yes | The name of the email account to send from. | |
| recipients | Yes | A list of recipient email addresses. | |
| subject | Yes | The subject of the email. | |
| body | Yes | The body of the email. | |
| cc | No | A list of CC email addresses. | |
| bcc | No | A list of BCC email addresses. | |
| html | No | Whether to send the email as HTML (True) or plain text (False). | |
| 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. | |
| references | No | Space-separated Message-IDs for the thread chain. Usually includes in_reply_to plus ancestors. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |