Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read a Google Doc's content and use it as the body of a Gmail message sent to specified recipients.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-draft-email-from-doc3description: "Read content from a Google Doc and use it as the body of a Gmail message."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-docs14- gws-gmail15---1617# Draft a Gmail Message from a Google Doc1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-docs`, `gws-gmail`2021Read content from a Google Doc and use it as the body of a Gmail message.2223## Steps24251. Get the document content: `gws docs documents get --params '{"documentId": "DOC_ID"}'`262. Copy the text from the body content273. Send the email: `gws gmail +send --to [email protected] --subject 'Newsletter Update' --body 'CONTENT_FROM_DOC'`2829