Here's a stat that should change how you think about email: a customer who receives a well-timed post-purchase sequence is 3x more likely to buy again than one who gets a download link and silence.
Most AI operators obsess over the landing page. They spend weeks on copy, design, social proof. Then someone buys and gets... a receipt. Maybe a download link. Then nothing.
That's leaving money — and advocates — on the table.
The Architecture: 4 Emails, 14 Days
You don't need a 47-email nurture sequence. You need four emails, timed correctly:
| When | Purpose | CTA | |
|---|---|---|---|
| Delivery | Immediate | Deliver the product + quick start | Read Chapter 1 |
| Check-in | Day 3 | Answer common questions | Community upsell (soft) |
| Progress | Day 7 | Push toward implementation | 3-item checklist |
| Results | Day 14 | Ask for outcome + testimonial | Reply with feedback |
That's the entire system. No complex branching logic. No "if they opened email 2 but didn't click..." nonsense. Four emails, linear sequence, fixed delays.
Email 1: Delivery (Sent Immediately)
This is the easiest email to get right and the most common one to get wrong.
What most people do: Generic "Thank you for your purchase!" with a download button buried under three paragraphs of gratitude.
What works: Lead with the download link. First line. No preamble.
Subject: Your [Product] is ready.
Here's your download link: [LINK]
No tricks. No upsell page before the file. You paid, here it is.
Quick start: Read [specific section] first. It's the foundation
everything else builds on.
[Second recommendation] is where most people say "oh, that's how
it actually works." Worth reading second.
If something doesn't make sense — reply to this email.
— [You]
Notice what's missing: no social media follow requests, no "share with a friend" CTA, no survey. The buyer just gave you money. Respect the moment by delivering exactly what they paid for, fast.
The reading order recommendation matters more than you think. Without it, buyers open the PDF, feel overwhelmed by 100+ pages, and close it. With a clear "start here, then go here," 60%+ actually begin reading within 24 hours.
Email 2: Check-in (Day 3)
By day 3, two things have happened: readers have questions, and non-readers feel guilty. Your email should address both.
Subject: How's [the thing] coming along?
By now you've probably [read/started/explored] the [Product].
A few things people usually ask at this point:
"[Common question 1]" — [Direct answer + chapter reference]
"[Common question 2]" — [Direct answer + chapter reference]
"[Common question 3]" — [Direct answer + chapter reference]
One more thing: [soft community/upsell CTA].
No pressure. The [Product] stands on its own.
— [You]
The FAQ format works because it does double duty: it answers questions for active readers and re-engages inactive ones ("oh right, I should actually read that").
The community/upsell CTA goes at the bottom, framed as optional. Day 3 is too early for a hard sell. But it plants the seed.
Email 3: Progress Check (Day 7)
This is the accountability email. One week in, the excitement has faded. The gap between "bought the thing" and "did the thing" is widening.
Subject: One week in.
It's been a week. Here's what I'd check at this point:
1. Did you [specific action from the product]?
2. Did you [second specific action]?
3. Did you [third specific action]?
If you've done all three, you're ahead of 90% of buyers.
If you haven't started yet — no judgment. But start.
The gap between reading and doing is where every
playbook goes to die.
— [You]
The numbered checklist creates a concrete "did I do this?" moment. Abstract encouragement doesn't work. Specific actions do.
"You're ahead of 90%" is social proof through exclusion. It makes the reader feel like part of a smaller, more committed group.
Email 4: Results (Day 14)
Two weeks. Time to close the loop.
Subject: Results?
Two weeks. By now you either:
(a) Have results coming in
(b) Got busy and haven't started
(c) Started but got stuck
If (a): reply and tell me. I feature wins from [customers/members].
If (b): best day to start was day 1. Second best is today.
If (c): reply and tell me where. If the product has a gap,
I want to know.
Either way — the system works. The variable is whether you run it.
— [You]
This email has three jobs:
- Collect testimonials from successful users (the "(a)" path)
- Re-activate procrastinators with a gentle push
- Get product feedback from stuck users
The "(a)/(b)/(c)" format works because it lets readers self-identify without feeling judged. There's no wrong answer — every path has a next step.
The Technical Setup (30 Minutes)
You need three things:
- A transactional email provider. Resend, Postmark, or SendGrid. Cost: $0-$20/mo for your first 1,000 sends.
- A webhook trigger. Stripe sends a
checkout.session.completedevent when someone buys. Your webhook catches it and enrolls the buyer in the drip queue. - A queue processor. A simple cron job that runs every 15 minutes, checks if any emails are due, and sends them.
The total code for this system is under 300 lines. No external email automation platform needed. No Mailchimp, no ConvertKit, no monthly platform fee.
Here's the flow:
Stripe purchase
→ Webhook fires
→ addToDrip(email, "post-purchase")
→ Queue stores: email, sequence, step=0, nextSendAt=now
Every 15 min:
→ processQueue()
→ Find entries where nextSendAt <= now
→ Send email via Resend API
→ Advance step, calculate next send time
→ If last step reached, mark completed
Your cost per customer for the full 4-email sequence: approximately $0.004 (four tenths of a cent). At 1,000 customers, the entire email system costs $4.
What to Measure
Track three numbers:
- Open rate per email: Email 1 should be 70%+ (they just bought). Email 4 should be 40%+. Below that, your subject lines need work.
- Reply rate on Email 4: If 5%+ of buyers reply with results, your product is working. If <1% reply, the product might have a delivery or clarity problem.
- Community conversion rate: What percentage of Email 2 recipients click the community CTA? This tells you if your upsell timing and framing are right.
Don't over-measure. Three metrics. Check weekly. Adjust monthly.
The Mistake Everyone Makes
Adding more emails. "What about a Day 30 email? A 90-day check-in? A birthday email?"
No. Four emails. After day 14, the buyer has either implemented or moved on. More emails after that point have negative ROI — they cost attention and goodwill without producing action.
If you want to keep engaging past day 14, do it through content (tweets, blog posts, community) — not email. The inbox is for high-signal communication. Your email sequence earned that trust. Don't spend it on drip-feed content marketing.
Build the four emails. Wire the webhook. Ship it this afternoon.