recipe-batch-reply-to-emailsby Google
Find Gmail messages matching a query and send a standard reply to each one.
npx skills add https://github.com/googleworkspace/cli --skill recipe-batch-reply-to-emailsBatch Reply to Similar Gmail Messages
PREREQUISITE: Load the following skills to execute this recipe:
gws-gmail
Find Gmail messages matching a query and send a standard reply to each one.
Steps
- Find messages needing replies:
gws gmail users messages list --params '{"userId": "me", "q": "is:unread from:customers label:support"}' --format table - Read a message:
gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' - Send a reply:
gws gmail +send --to sender@example.com --subject 'Re: Your Request' --body 'Thank you for reaching out. We have received your request and will respond within 24 hours.' - Mark as read:
gws gmail users messages modify --params '{"userId": "me", "id": "MSG_ID"}' --json '{"removeLabelIds": ["UNREAD"]}'
More skills from Google
gws-groupssettings
by Google
Manage Google Groups settings.
gws-modelarmor-sanitize-response
by Google
Google Model Armor: Sanitize a model response through a Model Armor template.
gws-people
by Google
Google People: Manage contacts and profiles.
gws-reseller
by Google
Google Workspace Reseller: Manage Workspace subscriptions.
gws-shared
by Google
gws CLI: Shared patterns for authentication, global flags, and output formatting.
gws-sheets
by Google
Google Sheets: Read and write spreadsheets.
gws-sheets-append
by Google
Google Sheets: Append a row to a spreadsheet.
gws-sheets-read
by Google
Google Sheets: Read values from a spreadsheet.