Server path:Documentation Index
Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
/email | Type: Embedded | PCID required: No
Tools
| Tool | Description |
|---|---|
email_send | Send an email via the integrated email service. Supports HTML and plain text content, multiple recipients, CC, BCC, attachments via URL, and reply threading. Either htmlBody or textBody (or both) must be provided. |
email_send
Send an email via the integrated email service. Supports HTML and plain text content, multiple recipients, CC, BCC, attachments via URL, and reply threading. Either htmlBody or textBody (or both) must be provided. Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
to | string | Yes | — | Recipient email address(es). Single email string or array. Example: “john@example.com” or [“john@example.com”, “jane@example.com”] |
subject | string | Yes | — | Email subject line. Required for email delivery |
htmlBody | string | No | — | HTML formatted email content. Example: “<p>Hello <b>World</b></p>”. Either htmlBody or textBody (or both) must be provided. If only textBody is provided, htmlBody will be auto-generated |
textBody | string | No | — | Plain text email content. Either htmlBody or textBody (or both) must be provided. If only htmlBody is provided, textBody will be auto-generated by stripping HTML tags |
replyTo | string | No | — | Reply-to email address (where replies go). Example: “support@example.com” |
cc | string | No | — | CC recipient(s). Example: “manager@example.com” or [“manager@example.com”, “team@example.com”] |
bcc | string | No | — | BCC recipient(s) - hidden from other recipients. Example: “archive@example.com” |
threadId | string | No | — | Email thread ID to add this email to an existing conversation |
attachmentUrls | string[] | No | — | URLs of files to attach. Files will be fetched and attached automatically. Example: [“https://example.com/report.pdf”, “https://example.com/image.png”] |

