send_email
Send emails through Gmail to manage business communications, track leads, and handle customer outreach as part of revenue operations.
Instructions
Send an email via Gmail. ALWAYS get user approval before calling this.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Email body content | |
subject | Yes | Email subject line | |
to | Yes | Recipient email address |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Email body content",
"type": "string"
},
"subject": {
"description": "Email subject line",
"type": "string"
},
"to": {
"description": "Recipient email address",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}