Skip to main content

recipe-forward-labeled-emails

Find Gmail messages with a specific label and forward them to another address.

Jump to install

Source facts

Repository
googleworkspace/cli
Last source activity
March 31, 2026 at 18:32
Detected SKILL.md language
English
Stars
31,028
Forks
1,840

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
recipe-forward-labeled-emails
description
Find Gmail messages with a specific label and forward them to another address.
metadata
{"version":"0.22.5","openclaw":{"category":"recipe","domain":"productivity","requires":{"bins":"[Truncated]","skills":"[Truncated]"}}}
# Forward Labeled Gmail Messages > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-gmail` Find Gmail messages with a specific label and forward them to another address. ## Steps 1. Find labeled messages: `gws gmail users messages list --params '{"userId": "me", "q": "label:needs-review"}' --format table` 2. Get message content: `gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}'` 3. Forward via new email: `gws gmail +send --to manager@company.com --subject 'FW: [Original Subject]' --body 'Forwarding for your review: [Original Message Body]'`
View on GitHub