Skip to main content
Server path: /email | Type: Embedded | PCID required: No

Tools

ToolDescription
email_sendSend 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:
ParameterTypeRequiredDefaultDescription
tostringYesRecipient email address(es). Single email string or array. Example: “john@example.com” or [“john@example.com”, “jane@example.com”]
subjectstringYesEmail subject line. Required for email delivery
htmlBodystringNoHTML 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
textBodystringNoPlain 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
replyTostringNoReply-to email address (where replies go). Example: “support@example.com
ccstringNoCC recipient(s). Example: “manager@example.com” or [“manager@example.com”, “team@example.com”]
bccstringNoBCC recipient(s) - hidden from other recipients. Example: “archive@example.com
threadIdstringNoEmail thread ID to add this email to an existing conversation
attachmentUrlsstring[]NoURLs of files to attach. Files will be fetched and attached automatically. Example: [“https://example.com/report.pdf”, “https://example.com/image.png”]