Email Strategy
Plan promotional email campaigns and write ready-to-send copy using proven campaign structures, ethical urgency, and direct-response email patterns.
This is a student-facing skill. Always produce practical campaign assets and save them as Markdown files so the user can find and reuse the work after the Claude session ends.
Skill folder: the folder containing this SKILL.md.
First-Run Config
At the start of every run, check for config in this order:
.email-strategy/skill_config.json in the current project/workspace.
skill_config.json in the skill folder.
If it does not exist, ask one compact setup question block before campaign work:
{
"brand_name": "",
"website_url": "",
"audience": "",
"approx_list_size": "",
"timezone": "",
"sender_voice": "",
"email_platform": "",
"default_output_behavior": "ask_each_run"
}
Collect those fields in plain English, then create .email-strategy/skill_config.json in the current project/workspace. If the user already provided every setup field in the prompt, create the config from those answers without asking again. If that write fails, try skill_config.json in the skill folder. email_platform is optional. Use ask_each_run unless the user explicitly requests another output behavior.
Dry runs still create config and output files in the specified temporary or project path. Only skip writing files if the user explicitly says not to write files.
If a config file already exists, read it first. Do not repeat onboarding. Use it as campaign context and only ask for missing campaign-specific information.
Output Files
At the start of each campaign run, ask where to save the output.
If the user gives a folder path, save files there. If they skip the path or say they do not care, create:
outputs/{YYYY-MM-DD}-{campaign-slug}/
inside the skill folder. Use lowercase safe slugs with letters, numbers, and hyphens only.
Save files as:
| Asset |
File |
| Strategy only |
strategy.md |
| Email copy only |
emails.md |
| Strategy plus copy in the same run |
Always create strategy.md, emails.md, and campaign-complete.md |
After saving, reply with a short summary and the file path. Do not leave the campaign only in the terminal/chat.
Workflow
Stage 1: Setup + campaign brief -> .email-strategy/skill_config.json if missing
Stage 2: Strategy -> strategy.md
Stage 3: Email copy, if requested -> emails.md
Stage 4: Save + summarize -> file path in final reply
Required Campaign Inputs
Before writing strategy or copy, identify what the user already provided. If anything important is missing, ask one compact question block.
Required campaign details:
- offer/product name and short description
- promotion type: launch, flash_sale, webinar, price_increase, evergreen, or other
- start date/time and end date/time with timezone
- number of emails desired
- bonuses, discounts, deadlines, or scarcity details
- top objections or hesitations
- available proof: testimonials, results, customer count, case studies, or "none yet"
- primary CTA and link
- preferred email length or style, if the user has a preference
Never invent proof, bonuses, prices, scarcity, guarantees, or product claims. If proof is missing, write proof-light copy instead of making numbers up.
If website/source facts are unavailable, do not make brand-specific claims about features, integrations, team structure, service process, onboarding, reporting, customer outcomes, client names, or metrics unless the user provided them. Use neutral educational framing ("what to look for", "questions to ask", "a good fit call should cover") or explicit placeholders instead.
Stage References
Read only what the current stage needs.
| Stage |
Read This |
| Strategy |
references/email-templates.md sections matching the promotion type |
| Strategy |
references/tips-tricks.md for cadence, segmentation, testing, and deliverability |
| Copy |
references/copy-rules.md before drafting email body copy |
| Copy |
The relevant example file below for tone and structure calibration |
Example References
| File |
When to Read |
references/examples-flash-sale.md |
Flash sales and discount announcements |
references/examples-launch.md |
Product launches, teasers, and announcement campaigns |
references/examples-final-hours.md |
Deadline, last chance, and final-hours emails |
references/examples-value-stack.md |
Bonus stacks, bundles, and value recap emails |
Template Selection Defaults
- Launch: teaser, day 1 offer, case study/use case, FAQ, last day AM, final hours.
- Flash sale: announcement, picks/benefits, last day AM, final hours.
- Webinar: invitation, 24h reminder, 1h reminder, replay plus offer.
- Price increase: advance notice, value recap, founder letter, last chance.
- Evergreen/lifecycle: content bridge, activation nudge, ROI/calculator, social proof.
- Re-engagement: win-back, survey bridge, short personal note.
Adjust cadence based on list warmth, price point, business type, and the real deadline.
Output Standards
- Strategy output includes campaign overview, email-by-email timing, template references, psychological angle, content elements, subject options, preheader, and implementation notes.
- Copy output includes subject, preheader, body, CTA, and P.S. when useful.
- Email copy must be scannable: short paragraphs, one primary CTA, concrete benefits, and clean formatting.
- If the user does not specify length, choose deliberately: proof-light evergreen emails should be concise (roughly 150-250 words), while launches, value stacks, objection handlers, case-study emails, and proof-rich campaigns can be longer (roughly 300-600 words). If the user asks for longer emails, write longer without padding or inventing facts.
- Generated campaign files must not contain em dashes, including headings, subject lines, preheaders, and body copy. Use commas, periods, colons, semicolons, or rewrite.
- Match the sender voice from the config unless the user gives campaign-specific voice direction.
- When writing proof-light copy, avoid first-person operational claims like "we run", "we provide", or "our team does" unless those specifics were verified or provided in the brief.
1---2name: email-strategy3description: Create email promotion strategies and ready-to-send email copy. Use for launches, flash sales, webinars, price increases, BFCM, sales emails, and promo sequences.4---56# Email Strategy78Plan promotional email campaigns and write ready-to-send copy using proven campaign structures, ethical urgency, and direct-response email patterns.910This is a student-facing skill. Always produce practical campaign assets and save them as Markdown files so the user can find and reuse the work after the Claude session ends.1112**Skill folder:** the folder containing this `SKILL.md`.1314## First-Run Config1516At the start of every run, check for config in this order:17181. `.email-strategy/skill_config.json` in the current project/workspace.192. `skill_config.json` in the skill folder.2021If it does not exist, ask one compact setup question block before campaign work:2223```json24{25 "brand_name": "",26 "website_url": "",27 "audience": "",28 "approx_list_size": "",29 "timezone": "",30 "sender_voice": "",31 "email_platform": "",32 "default_output_behavior": "ask_each_run"33}34```3536Collect those fields in plain English, then create `.email-strategy/skill_config.json` in the current project/workspace. If the user already provided every setup field in the prompt, create the config from those answers without asking again. If that write fails, try `skill_config.json` in the skill folder. `email_platform` is optional. Use `ask_each_run` unless the user explicitly requests another output behavior.3738Dry runs still create config and output files in the specified temporary or project path. Only skip writing files if the user explicitly says not to write files.3940If a config file already exists, read it first. Do not repeat onboarding. Use it as campaign context and only ask for missing campaign-specific information.4142## Output Files4344At the start of each campaign run, ask where to save the output.4546If the user gives a folder path, save files there. If they skip the path or say they do not care, create:4748```text49outputs/{YYYY-MM-DD}-{campaign-slug}/50```5152inside the skill folder. Use lowercase safe slugs with letters, numbers, and hyphens only.5354Save files as:5556| Asset | File |57|-------|------|58| Strategy only | `strategy.md` |59| Email copy only | `emails.md` |60| Strategy plus copy in the same run | Always create `strategy.md`, `emails.md`, and `campaign-complete.md` |6162After saving, reply with a short summary and the file path. Do not leave the campaign only in the terminal/chat.6364## Workflow6566```text67Stage 1: Setup + campaign brief -> .email-strategy/skill_config.json if missing68Stage 2: Strategy -> strategy.md69Stage 3: Email copy, if requested -> emails.md70Stage 4: Save + summarize -> file path in final reply71```7273## Required Campaign Inputs7475Before writing strategy or copy, identify what the user already provided. If anything important is missing, ask one compact question block.7677Required campaign details:7879- offer/product name and short description80- promotion type: launch, flash_sale, webinar, price_increase, evergreen, or other81- start date/time and end date/time with timezone82- number of emails desired83- bonuses, discounts, deadlines, or scarcity details84- top objections or hesitations85- available proof: testimonials, results, customer count, case studies, or "none yet"86- primary CTA and link87- preferred email length or style, if the user has a preference8889Never invent proof, bonuses, prices, scarcity, guarantees, or product claims. If proof is missing, write proof-light copy instead of making numbers up.9091If website/source facts are unavailable, do not make brand-specific claims about features, integrations, team structure, service process, onboarding, reporting, customer outcomes, client names, or metrics unless the user provided them. Use neutral educational framing ("what to look for", "questions to ask", "a good fit call should cover") or explicit placeholders instead.9293## Stage References9495Read only what the current stage needs.9697| Stage | Read This |98|-------|-----------|99| Strategy | `references/email-templates.md` sections matching the promotion type |100| Strategy | `references/tips-tricks.md` for cadence, segmentation, testing, and deliverability |101| Copy | `references/copy-rules.md` before drafting email body copy |102| Copy | The relevant example file below for tone and structure calibration |103104## Example References105106| File | When to Read |107|------|--------------|108| `references/examples-flash-sale.md` | Flash sales and discount announcements |109| `references/examples-launch.md` | Product launches, teasers, and announcement campaigns |110| `references/examples-final-hours.md` | Deadline, last chance, and final-hours emails |111| `references/examples-value-stack.md` | Bonus stacks, bundles, and value recap emails |112113## Template Selection Defaults114115- Launch: teaser, day 1 offer, case study/use case, FAQ, last day AM, final hours.116- Flash sale: announcement, picks/benefits, last day AM, final hours.117- Webinar: invitation, 24h reminder, 1h reminder, replay plus offer.118- Price increase: advance notice, value recap, founder letter, last chance.119- Evergreen/lifecycle: content bridge, activation nudge, ROI/calculator, social proof.120- Re-engagement: win-back, survey bridge, short personal note.121122Adjust cadence based on list warmth, price point, business type, and the real deadline.123124## Output Standards125126- Strategy output includes campaign overview, email-by-email timing, template references, psychological angle, content elements, subject options, preheader, and implementation notes.127- Copy output includes subject, preheader, body, CTA, and P.S. when useful.128- Email copy must be scannable: short paragraphs, one primary CTA, concrete benefits, and clean formatting.129- If the user does not specify length, choose deliberately: proof-light evergreen emails should be concise (roughly 150-250 words), while launches, value stacks, objection handlers, case-study emails, and proof-rich campaigns can be longer (roughly 300-600 words). If the user asks for longer emails, write longer without padding or inventing facts.130- Generated campaign files must not contain em dashes, including headings, subject lines, preheaders, and body copy. Use commas, periods, colons, semicolons, or rewrite.131- Match the sender voice from the config unless the user gives campaign-specific voice direction.132- When writing proof-light copy, avoid first-person operational claims like "we run", "we provide", or "our team does" unless those specifics were verified or provided in the brief.