Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Find Gmail messages with a specific label and forward them to another email address.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-forward-labeled-emails3description: "Find Gmail messages with a specific label and forward them to another address."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-gmail14---1516# Forward Labeled Gmail Messages1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail`1920Find Gmail messages with a specific label and forward them to another address.2122## Steps23241. Find labeled messages: `gws gmail users messages list --params '{"userId": "me", "q": "label:needs-review"}' --format table`252. Get message content: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'`263. Forward via new email: `gws gmail +send --to [email protected] --subject 'FW: [Original Subject]' --body 'Forwarding for your review:2728[Original Message Body]'`2930