Email Best Practices
Summary
TL;DR: Email Best Practices teaches your AI agent the rules of effective email writing, from subject lines to formatting to call-to-action placement.
Email Best Practices is an OpenClaw skill that use when building email features, emails going to spam, high bounce rates, setting up SPF/DKIM/DMARC authentication, implementing email capture, ensuring compliance (CAN-SPAM, GDPR, CASL), handling webhooks, retry logic, or deciding transactional vs marketing.
Created by christina-de-martinez, this skill has been downloaded 3k+ times on ClawHub. Install it with one command and your AI agent gains these capabilities right away. Pair with IMAP SMTP Email for sending and reading.
Use cases
- Draft cold outreach emails that follow proven subject line and opening patterns
- Write internal team updates that are scannable and highlight action items clearly
- Compose client-facing emails with the right tone and clear next steps
- Review and rewrite existing email drafts to be more concise and effective
Installation
Run this command to install the skill on your OpenClaw agent:
npx clawhub@latest install email-best-practicesSecurity scan
This is an instruction-only skill whose files and runtime guidance match its stated purpose (email deliverability, compliance, webhooks, retries) and it does not request extra permissions or install code.
SKILL.md
---
name: email-best-practices
description: Use when building email features, emails going to spam, high bounce rates, setting up SPF/DKIM/DMARC authentication, implementing email capture, ensuring compliance (CAN-SPAM, GDPR, CASL), handling webhooks, retry logic, or deciding transactional vs marketing.
---
# Email Best Practices
Guidance for building deliverable, compliant, user-friendly emails.
## Architecture Overview
```
[User] → [Email Form] → [Validation] → [Double Opt-In]
↓
[Consent Recorded]
↓
[Suppression Check] ←──────────────[Ready to Send]
↓
[Idempotent Send + Retry] ──────→ [Email API]
↓
[Webhook Events]
↓
┌────────┬────────┬─────────────┐
↓ ↓ ↓ ↓
Delivered Bounced Complained Opened/Clicked
↓ ↓
[Suppression List Updated]
↓
[List Hygiene Jobs]
```
## Quick Reference
| Need to... | See |
|------------|-----|
| Set up SPF/DKIM/DMARC, fix spam issues | [Deliverability](./resources/deliverability.md) |
| Build password reset, OTP, confirmations | [Transactional Emails](./resources/transactional-emails.md) |
| Plan which emails your app needs | [Transactional Email Catalog](./resources/transactional-email-catalog.md) |
| Build newsletter signup, validate emails | [Email Capture](./resources/email-capture.md) |
| Send newsletters, promotions | [Marketing Emails](./resources/marketing-emails.md) |
| Ensure CAN-SPAM/GDPR/CASL compliance | [Compliance](./resources/compliance.md) |
| Decide transactional vs marketing | [Email Types](./resources/email-types.md) |
| Handle retries, idempotency, errors | [Sending Reliability](./resources/sending-reliability.md) |
| Process delivery events, set up webhooks | [Webhooks & Events](./resources/webhooks-events.md) |
| Manage bounces, complaints, suppression | [List Management](./resources/list-management.md) |
## Start Here
**New app?**
Start with the [Catalog](./resources/transactional-email-catalog.md) to plan which emails your app needs (password reset, verification, etc.), then set up [Deliverability](./resources/deliverability.md) (DNS authentication) before sending your first email.
**Spam issues?**
Check [Deliverability](./resources/deliverability.md) first—authentication problems are the most common cause. Gmail/Yahoo reject unauthenticated emails.
**Marketing emails?**
Follow this path: [Email Capture](./resources/email-capture.md) (collect consent) → [Compliance](./resources/compliance.md) (legal requirements) → [Marketing Emails](./resources/marketing-emails.md) (best practices).
**Production-ready sending?**
Add reliability: [Sending Reliability](./resources/sending-reliability.md) (retry + idempotency) → [Webhooks & Events](./resources/webhooks-events.md) (track delivery) → [List Management](./resources/list-management.md) (handle bounces).
Version history
Initial release with comprehensive email best practices: - Provides modular guides covering deliverability, compliance, marketing, transactional emails, webhooks, and list management. - Includes quick-reference links for common scenarios such as authentication (SPF/DKIM/DMARC), spam troubleshooting, and legal compliance. - Architecture diagram outlines recommended email workflow from capture through delivery and suppression. - Shifted focus from CLI/API usage to actionable guidance and implementation resources. - Added 11+ resource documents with in-depth instructions for building reliable and compliant email features.
Frequently asked questions
The skill focuses on professional and business email patterns. It handles everything from formal client communication to casual team messages, adjusting tone based on context.
Installation method
Send this prompt to your agent to install the skill
npx clawhub@latest install email-best-practicesSkill info
Files
Skill data sourced from ClawHub