Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Enable a Gmail out-of-office auto-reply with a custom message, then disable it on return.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-vacation-responder3description: "Enable a Gmail out-of-office auto-reply with a custom message and date range."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-gmail14---1516# Set Up a Gmail Vacation Responder1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`1920Enable a Gmail out-of-office auto-reply with a custom message and date range.2122## Steps23241. Enable vacation responder: `gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": true, "responseSubject": "Out of Office", "responseBodyPlainText": "I am out of the office until Jan 20. For urgent matters, contact [email protected].", "restrictToContacts": false, "restrictToDomain": false}'`252. Verify settings: `gws gmail users settings getVacation --params '{"userId": "me"}'`263. Disable when back: `gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": false}'`2728