Learn-skills.dev welcome-email
Send welcome email sequence to new clients. Use when user asks to send welcome emails, onboard new client with emails, or trigger welcome sequence.
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/aiagentwithdhruv/skills/welcome-email" ~/.claude/skills/neversight-learn-skills-dev-welcome-email && rm -rf "$T"
manifest:
data/skills-md/aiagentwithdhruv/skills/welcome-email/SKILL.mdsource content
Welcome Client Emails
Goal
Send 3-email welcome sequence (Nick, Peter, Sam) when a new client signs.
Scripts
- Send welcome sequence./scripts/welcome_client_emails.py
Process
- Receive client info (name, email, company)
- Send email from Nick (welcome, expectations)
- Send email from Peter (technical setup)
- Send email from Sam (support intro)
Usage
python3 ./scripts/welcome_client_emails.py \ --client_name "John Doe" \ --client_email "john@company.com" \ --company "Acme Corp"
Email Structure
Each email is personalized with client details and sent from different team members to establish relationships.
Schema
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| string | Yes | Client full name |
| string | Yes | Client email address |
| string | Yes | Client company name |
Outputs
| Name | Type | Description |
|---|---|---|
| integer | Number of welcome emails sent (3) |
Credentials
| Name | Source |
|---|---|
| file |
Composable With
Skills that chain well with this one:
onboarding-kickoff, create-proposal
Cost
Free (Gmail API)