recipe-save-email-to-doc

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Save a Gmail Message to Google Docs

将Gmail邮件保存到Google Docs

PREREQUISITE: Load the following skills to execute this recipe:
gws-gmail
,
gws-docs
Save a Gmail message body into a Google Doc for archival or reference.
前提条件: 加载以下技能以执行此方案:
gws-gmail
gws-docs
将Gmail邮件正文保存到Google Docs中,用于存档或参考。

Steps

步骤

  1. Find the message:
    gws gmail users messages list --params '{"userId": "me", "q": "subject:important from:boss@company.com"}' --format table
  2. Get message content:
    gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'
  3. Create a doc with the content:
    gws docs documents create --json '{"title": "Saved Email - Important Update"}'
  4. Write the email body: `gws docs +write --document-id DOC_ID --text 'From: boss@company.com Subject: Important Update
[EMAIL BODY]'`
  1. 查找邮件:
    gws gmail users messages list --params '{"userId": "me", "q": "subject:important from:boss@company.com"}' --format table
  2. 获取邮件内容:
    gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'
  3. 创建包含该内容的文档:
    gws docs documents create --json '{"title": "Saved Email - Important Update"}'
  4. 写入邮件正文:`gws docs +write --document-id DOC_ID --text 'From: boss@company.com Subject: Important Update
[EMAIL BODY]'`