create_reply
Generate Gmail reply drafts with provided content and direct compose URLs for responding to specific email messages.
Instructions
Generate a brief, natural reply draft and provide Gmail compose URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageId | Yes | Email message ID to reply to | |
replyMessage | Yes | The reply message content to create as a draft |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"messageId": {
"description": "Email message ID to reply to",
"type": "string"
},
"replyMessage": {
"description": "The reply message content to create as a draft",
"type": "string"
}
},
"required": [
"messageId",
"replyMessage"
],
"type": "object"
}