Message bodies are sent to a hard-coded recipient
Source references: 4The workflow reads matching messages in full and directs the original body to `manager@company.com` in a new email. The user does not select this address at execution time, and the steps require no per-message preview, recipient confirmation, or sensitive-content restriction.
Confidential, personal, or regulated content in messages labeled `needs-review` could be disclosed to an address the user did not authorize or that is outside their organization.
The active steps do read matching messages and send the original body to `manager@company.com`, so literal execution would disclose that content outside the mailbox. However, forwarding is the skill’s stated purpose, and the same command contains template placeholders such as `[Original Subject]` and `[Original Message Body]`. The source does not establish whether the address is another example to replace or a fixed recipient used without user selection. The actual address and message scope should be explicitly confirmed by the user before sending.
This assessment concerns the code and conditions shown, not proof that harm has occurred.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:Show 3 other places
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: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]'`Find Gmail messages with a specific label and forward them to another address.