gmail-send-email
Send emails through Gmail by specifying recipients, subject, and body content. Supports CC and BCC for managing email distribution.
Instructions
Send an email using Gmail
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc | No | BCC email addresses (comma-separated) | |
body | Yes | Email body content | |
cc | No | CC email addresses (comma-separated) | |
subject | Yes | Email subject | |
to | Yes | Recipient email address |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "BCC email addresses (comma-separated)",
"type": "string"
},
"body": {
"description": "Email body content",
"type": "string"
},
"cc": {
"description": "CC email addresses (comma-separated)",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"to": {
"description": "Recipient email address",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}