send_email
Send emails through Gmail SMTP by providing recipient address, subject line, and message body content.
Instructions
Send an email using Gmail SMTP
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient email address | |
| subject | Yes | Email subject | |
| body | Yes | Email body content |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Email body content",
"minLength": 1,
"type": "string"
},
"subject": {
"description": "Email subject",
"minLength": 1,
"type": "string"
},
"to": {
"description": "Recipient email address",
"format": "email",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}