sendook_send_message
Send an email from a Sendook inbox to one or more recipients. Supports plain text and HTML content, CC, BCC, labels, and file attachments.
Instructions
Send an email message from a Sendook inbox.
Sends an email to specified recipients with optional CC, BCC, attachments, and custom labels. Supports both plain text and HTML content.
Args: params: SendMessageInput containing: - inbox_id: Inbox to send from - to: List of recipient email addresses - subject: Email subject line - text: Plain text body (optional) - html: HTML body (optional) - cc: CC recipients (optional) - bcc: BCC recipients (optional) - labels: Custom labels (optional) - attachments: File attachments as base64 (optional)
Returns: str: Confirmation with message ID and details
Examples: - Simple email: to=["user@example.com"], subject="Hello", text="Hi there!" - With attachments: Include attachments list with base64 content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |