# Recipe Create Vacation Responder > Enable a Gmail out-of-office auto-reply with a custom message and date range. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-vacation-responder Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 19 tok installed, 268 tok once triggered, 268 tok with every bundled file Bundle: 1 file, 1 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-vacation-responder --agent claude-code ``` ## What it does - Activa la respuesta automática de fuera de oficina en Gmail con `gws gmail users settings updateVacation` - Configura asunto y cuerpo del mensaje de auto-respuesta y restricciones de contactos/dominio - Verifica la configuración con `gws gmail users settings getVacation` - Desactiva la respuesta automática cuando el usuario regresa ## Use it when - Cuando se necesita habilitar un auto-reply de vacaciones en Gmail con mensaje y rango de fechas personalizados ## What triggers it - "Activa el respondedor de vacaciones en Gmail con este mensaje" - "Configura mi auto-respuesta de fuera de oficina hasta el 20 de enero" - "Desactiva el vacation responder de Gmail cuando vuelva" ## Before you install - Requiere el binario `gws` y cargar la skill `gws-gmail`. ## Files - SKILL.md — 1 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Set Up a Gmail Vacation Responder > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` Enable a Gmail out-of-office auto-reply with a custom message and date range. ## Steps 1. 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 backup@company.com.", "restrictToContacts": false, "restrictToDomain": false}'` 2. Verify settings: `gws gmail users settings getVacation --params '{"userId": "me"}'` 3. Disable when back: `gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": false}'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-vacation-responder