google_gmail_draft_email
Create and manage draft emails directly in Gmail by specifying recipients, subject, body, and optional CC/BCC. Supports plain text or HTML content for efficient email drafting.
Instructions
Create a draft 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"
}