recipe-batch-reply-to-emails
星标8
分支1
更新时间2026年3月3日 23:02
Find Gmail messages matching a query and send a standard reply to each one.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Find Gmail messages matching a query and send a standard reply to each one.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Workspace Admin SDK: Manage users, groups, and devices.
Google Workspace Alert Center: Manage Workspace security alerts.
Google Apps Script: Manage and execute Apps Script projects.
Google Cloud Identity: Manage identity groups and memberships.
Google People: Manage contacts and profiles.
Google Workspace Reseller: Manage Workspace subscriptions.
| name | recipe-batch-reply-to-emails |
| version | 1.0.0 |
| description | Find Gmail messages matching a query and send a standard reply to each one. |
| metadata | {"openclaw":{"category":"recipe","domain":"productivity","requires":{"bins":["gws"],"skills":["gws-gmail"]}}} |
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.
gws gmail users messages list --params '{"userId": "me", "q": "is:unread from:customers label:support"}' --format tablegws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'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.'gws gmail users messages modify --params '{"userId": "me", "id": "MSG_ID"}' --json '{"removeLabelIds": ["UNREAD"]}'