recipe-batch-reply-to-emails

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Batch Reply to Similar Gmail Messages

批量回复相似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.
前提条件: 加载以下skill以执行此方案:
gws-gmail
查找符合查询条件的Gmail邮件,并向每封邮件发送标准回复。

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"]}'
  1. 查找需要回复的邮件:
    gws gmail users messages list --params '{"userId": "me", "q": "is:unread from:customers label:support"}' --format table
  2. 查看邮件内容:
    gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'
  3. 发送回复:
    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. 标记为已读:
    gws gmail users messages modify --params '{"userId": "me", "id": "MSG_ID"}' --json '{"removeLabelIds": ["UNREAD"]}'