send_email
Send emails programmatically using the Gmail API. Specify recipients, subject, and content, including HTML. Manage CC and BCC fields for efficient email distribution.
Instructions
Send a new email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc | No | BCC recipients (comma-separated) | |
body | Yes | Email body (can include HTML) | |
cc | No | CC recipients (comma-separated) | |
subject | Yes | Email subject | |
to | Yes | Recipient email address |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "BCC recipients (comma-separated)",
"type": "string"
},
"body": {
"description": "Email body (can include HTML)",
"type": "string"
},
"cc": {
"description": "CC recipients (comma-separated)",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"to": {
"description": "Recipient email address",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}