recipe-batch-reply-to-emails

Find Gmail messages matching a query and send a standard reply to each one.

5 stars

Best use case

recipe-batch-reply-to-emails is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Find Gmail messages matching a query and send a standard reply to each one.

Teams using recipe-batch-reply-to-emails should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/recipe-batch-reply-to-emails/SKILL.md --create-dirs "https://raw.githubusercontent.com/pleaseai/claude-code-plugins/main/plugins/google-workspace/skills/recipe-batch-reply-to-emails/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/recipe-batch-reply-to-emails/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How recipe-batch-reply-to-emails Compares

Feature / Agentrecipe-batch-reply-to-emailsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Find Gmail messages matching a query and send a standard reply to each one.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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"]}'`

Related Skills

recipe-watch-drive-changes

5
from pleaseai/claude-code-plugins

Subscribe to change notifications on a Google Drive file or folder.

recipe-sync-contacts-to-sheet

5
from pleaseai/claude-code-plugins

Export Google Contacts directory to a Google Sheets spreadsheet.

recipe-share-folder-with-team

5
from pleaseai/claude-code-plugins

Share a Google Drive folder and all its contents with a list of collaborators.

recipe-share-event-materials

5
from pleaseai/claude-code-plugins

Share Google Drive files with all attendees of a Google Calendar event.

recipe-share-doc-and-notify

5
from pleaseai/claude-code-plugins

Share a Google Docs document with edit access and email collaborators the link.

recipe-send-team-announcement

5
from pleaseai/claude-code-plugins

Send a team announcement via both Gmail and a Google Chat space.

recipe-send-personalized-emails

5
from pleaseai/claude-code-plugins

Read recipient data from Google Sheets and send personalized Gmail messages to each row.

recipe-search-and-export-emails

5
from pleaseai/claude-code-plugins

Find Gmail messages matching a query and export them for review.

recipe-schedule-recurring-event

5
from pleaseai/claude-code-plugins

Create a recurring Google Calendar event with attendees.

recipe-save-email-to-doc

5
from pleaseai/claude-code-plugins

Save a Gmail message body into a Google Doc for archival or reference.

recipe-save-email-attachments

5
from pleaseai/claude-code-plugins

Find Gmail messages with attachments and save them to a Google Drive folder.

recipe-review-overdue-tasks

5
from pleaseai/claude-code-plugins

Find Google Tasks that are past due and need attention.