# Cold Email Automation

> AI-powered cold email outreach automation. Find prospects, generate personalized emails with AI, send via SMTP/Gmail/Zoho, and manage follow-up sequences. Use when user needs to send cold outreach emails, build email campaigns, or automate prospect communication for sales/BD.

- Skill: `halojerry/cold-email-automation` (Agent Skill)
- Install (CLI): `npx skillmds@latest add halojerry/cold-email-automation`
- Raw SKILL.md: https://api.skillmd.com/api/skills/halojerry/cold-email-automation/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: halojerry (https://skillmd.com/u/halojerry)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/halojerry/cold-email-automation

---


# Cold Email Automation — 冷邮件自动化

基于 [free_outbound_agent](https://github.com/Dumebii/free_outbound_agent) 开源项目。

## 核心能力

1. **客户发现** — 从 GitHub/Dev.to 等平台自动发现潜在客户
2. **AI 写作** — 用 Claude/GPT-4 生成个性化冷邮件
3. **多渠道发送** — SMTP/Gmail API/Zoho 支持
4. **跟进序列** — 自动管理多轮跟进
5. **追踪分析** — 打开率/回复率统计

## 配置

编辑 `config.yaml`：

```yaml
email:
  provider: smtp  # smtp | gmail | zoho
  smtp_host: smtp.gmail.com
  smtp_port: 587
  username: ${SMTP_USER}
  password: ${SMTP_PASS}

ai:
  provider: claude  # claude | openai
  model: claude-sonnet-4-20250514

follow_up:
  max_rounds: 3
  interval_days: 3
```

## 发送邮件

```bash
# 批量发送
python3 pipeline.py --source linkedin --template outreach

# 单封发送
python3 send/send_email.py --to "prospect@company.com" --template intro
```

## 模板变量

```
{first_name} {company} {industry} {pain_point} {value_prop}
```

## 合规要求

- 确保邮件列表已获得收件人同意（opt-in）
- 遵守 CAN-SPAM 法规（提供退订链接）
- 不发送垃圾邮件

