google_gmail_send_email

Send emails directly via Gmail by specifying recipients, subject, and content. Supports CC, BCC, and HTML formatting for efficient and customizable email communication.

Instructions

Send a new email

Input Schema

NameRequiredDescriptionDefault
bccNoBCC recipients email addresses
bodyYesEmail body content (can be plain text or HTML)
ccNoCC recipients email addresses
isHtmlNoWhether the body contains HTML
subjectYesEmail subject
toYesRecipients email addresses

Input Schema (JSON Schema)

{ "properties": { "bcc": { "description": "BCC recipients email addresses", "items": { "type": "string" }, "type": "array" }, "body": { "description": "Email body content (can be plain text or HTML)", "type": "string" }, "cc": { "description": "CC recipients email addresses", "items": { "type": "string" }, "type": "array" }, "isHtml": { "description": "Whether the body contains HTML", "type": "boolean" }, "subject": { "description": "Email subject", "type": "string" }, "to": { "description": "Recipients email addresses", "items": { "type": "string" }, "type": "array" } }, "required": [ "to", "subject", "body" ], "type": "object" }
ID: opwf6bop3j