send_message
Send email messages to recipients with options for CC, BCC, subject, and body content through the Gmail MCP server.
Instructions
Send an email message to specified recipients. Note the mechanics of the raw parameter.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | The entire email message in base64url encoded RFC 2822 format, ignores params.to, cc, bcc, subject, body, includeBodyHtml if provided | |
| threadId | No | The thread ID to associate this message with | |
| to | No | List of recipient email addresses | |
| cc | No | List of CC recipient email addresses | |
| bcc | No | List of BCC recipient email addresses | |
| subject | No | The subject of the email | |
| body | No | The body of the email | |
| includeBodyHtml | No | Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "List of BCC recipient email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"description": "The body of the email",
"type": "string"
},
"cc": {
"description": "List of CC recipient email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"includeBodyHtml": {
"description": "Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large",
"type": "boolean"
},
"raw": {
"description": "The entire email message in base64url encoded RFC 2822 format, ignores params.to, cc, bcc, subject, body, includeBodyHtml if provided",
"type": "string"
},
"subject": {
"description": "The subject of the email",
"type": "string"
},
"threadId": {
"description": "The thread ID to associate this message with",
"type": "string"
},
"to": {
"description": "List of recipient email addresses",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}