recipe-save-email-to-doc
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSave a Gmail Message to Google Docs
将Gmail邮件保存到Google Docs
PREREQUISITE: Load the following skills to execute this recipe:,gws-gmailgws-docs
Save a Gmail message body into a Google Doc for archival or reference.
前提条件: 加载以下技能以执行此方案:、gws-gmailgws-docs
将Gmail邮件正文保存到Google Docs中,用于存档或参考。
Steps
步骤
- Find the message:
gws gmail users messages list --params '{"userId": "me", "q": "subject:important from:boss@company.com"}' --format table - Get message content:
gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' - Create a doc with the content:
gws docs documents create --json '{"title": "Saved Email - Important Update"}' - Write the email body: `gws docs +write --document-id DOC_ID --text 'From: boss@company.com Subject: Important Update
[EMAIL BODY]'`
- 查找邮件:
gws gmail users messages list --params '{"userId": "me", "q": "subject:important from:boss@company.com"}' --format table - 获取邮件内容:
gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' - 创建包含该内容的文档:
gws docs documents create --json '{"title": "Saved Email - Important Update"}' - 写入邮件正文:`gws docs +write --document-id DOC_ID --text 'From: boss@company.com Subject: Important Update
[EMAIL BODY]'`