update_vacation
Modify Gmail vacation responder settings, including auto-reply enablement, subject, message body, and restrictions for contacts or domain users, with specified start and end times.
Instructions
Update vacation responder settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enableAutoReply | Yes | Whether the vacation responder is enabled | |
endTime | No | End time for sending auto-replies (epoch ms) | |
responseBodyPlainText | Yes | Response body in plain text format | |
responseSubject | No | Optional subject line for the vacation responder auto-reply | |
restrictToContacts | No | Whether responses are only sent to contacts | |
restrictToDomain | No | Whether responses are only sent to users in the same domain | |
startTime | No | Start time for sending auto-replies (epoch ms) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"enableAutoReply": {
"description": "Whether the vacation responder is enabled",
"type": "boolean"
},
"endTime": {
"description": "End time for sending auto-replies (epoch ms)",
"type": "string"
},
"responseBodyPlainText": {
"description": "Response body in plain text format",
"type": "string"
},
"responseSubject": {
"description": "Optional subject line for the vacation responder auto-reply",
"type": "string"
},
"restrictToContacts": {
"description": "Whether responses are only sent to contacts",
"type": "boolean"
},
"restrictToDomain": {
"description": "Whether responses are only sent to users in the same domain",
"type": "boolean"
},
"startTime": {
"description": "Start time for sending auto-replies (epoch ms)",
"type": "string"
}
},
"required": [
"enableAutoReply",
"responseBodyPlainText"
],
"type": "object"
}