recipe-batch-reply-to-emails
Find Gmail messages matching a query and send a standard reply to each one.
Works with
---
name: recipe-batch-reply-to-emails
description: Find Gmail messages matching a query and send a standard reply to each one.
license: Apache-2.0
---
# Batch 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
1. Find messages needing replies: `gws gmail users messages list --params '{"userId": "me", "q": "is:unread from:customers label:support"}' --format table`
2. Read a message: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'`
3. 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.'`
4. Mark as read: `gws gmail users messages modify --params '{"userId": "me", "id": "MSG_ID"}' --json '{"removeLabelIds": ["UNREAD"]}'`More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

