# Recipe Send Personalized Emails

> Read recipient data from Google Sheets and send personalized Gmail messages to each row.

- Skill: `digitalspeed/recipe-send-personalized-emails` (Agent Skill)
- Install (CLI): `npx skillmds@latest add digitalspeed/recipe-send-personalized-emails`
- Raw SKILL.md: https://api.skillmd.com/api/skills/digitalspeed/recipe-send-personalized-emails/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: digitalspeed (https://skillmd.com/u/digitalspeed)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/digitalspeed/recipe-send-personalized-emails

---


# Send Personalized Emails from a Sheet

> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-gmail`

Read recipient data from Google Sheets and send personalized Gmail messages to each row.

## Steps

1. Read recipient list: `gws sheets +read --spreadsheet-id SHEET_ID --range 'Contacts!A2:C'`
2. For each row, send a personalized email: `gws gmail +send --to recipient@example.com --subject 'Hello, Name' --body 'Hi Name, your report is ready.'`


