send_email
Initiate email delivery directly via Google Toolbox by specifying recipient, subject, body, CC, and BCC fields for precise communication.
Instructions
Send a new email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc | No | ||
body | Yes | ||
cc | No | ||
subject | Yes | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"anyOf": [
{
"format": "email",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Bcc"
},
"body": {
"title": "Body",
"type": "string"
},
"cc": {
"anyOf": [
{
"format": "email",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cc"
},
"subject": {
"title": "Subject",
"type": "string"
},
"to": {
"format": "email",
"title": "To",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"title": "send_emailArguments",
"type": "object"
}