send_email
Send an email to one or more recipients with optional CC, reply-to, and file attachments using a specified account.
Instructions
Send an email with optional attachments.
Args: account: Account ID to use (e.g., "work", "personal"). to: List of recipient email addresses. subject: Email subject line. body: Email body text (plain text). cc: Optional list of CC recipients. reply_to: Optional Reply-To email address. attachments: Optional list of file attachments. Each attachment should have: - filename: Name of the file (required) - content: Base64-encoded file content (required if path not provided) - mime_type: MIME type (default: application/octet-stream) - path: File path to read from (required if content not provided)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | ||
| to | Yes | ||
| body | Yes | ||
| account | Yes | ||
| subject | Yes | ||
| reply_to | No | ||
| attachments | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |