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
Name | Required | Description | Default |
---|---|---|---|
bcc | No | BCC recipients email addresses | |
body | Yes | Email body content (can be plain text or HTML) | |
cc | No | CC recipients email addresses | |
isHtml | No | Whether the body contains HTML | |
subject | Yes | Email subject | |
to | Yes | Recipients 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"
}