
Recipe Save Email To Doc
A recipe to save an email's contents into a Google Doc.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-save-email-to-docWhat is this skill?
- Email-to-Doc recipe
- Google Workspace
- Capture email content
Adoption & trust: 16.8k installs on skills.sh; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Lark Maillarksuite/cli
Lark Slideslarksuite/cli
Lark Markdownlarksuite/cli
Pptxanthropics/skills
Pdfanthropics/skills
Docxanthropics/skills
Journey fit
Common Questions / FAQ
Is Recipe Save Email To Doc safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Recipe Save Email To Doc
# Save a Gmail Message to 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. ## 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]'`