Quick Route
| Situation |
Go to |
| Pick a capture tool |
"Capture-inbox decision tree" below |
| Poll an inbox without a sleep |
references/mailpit-playwright.md (polling helper) |
| Pull an OTP / link out of the body |
references/mailpit-playwright.md (extraction) |
| Full password-reset / signup / magic-link E2E |
references/mailpit-playwright.md |
| Real addresses on staging |
references/hosted-inboxes.md (Mailosaur) |
| Per-test throwaway inbox |
references/hosted-inboxes.md (MailSlurp) |
| Just preview a template locally |
references/hosted-inboxes.md (Ethereal) |
| Flag SPF/DKIM/DMARC problems |
references/deliverability.md |
| Tests pass locally, "no email yet" in CI |
"Flaky email in CI" below |
Discovery Questions
Check .agents/qa-project-context.md first — if it exists, use it and skip anything
answered there.
- Where does the email need to be received? Local capture (Mailpit) covers most
functional flows for free. A real, externally-deliverable address (staging, a third-
party ESP, real DNS) means a hosted inbox (Mailosaur / MailSlurp). This is the single
biggest tool-selection driver.
- How parallel is the suite? High parallelism makes "the latest email" ambiguous —
you need per-test unique addresses or per-test inboxes, not a shared mailbox.
- Which flows? Signup confirmation, password reset, magic-link login, OTP/MFA,
notification emails — they share one shape (capture, extract, complete) but differ in
what you extract (link vs 6-digit code).
- Is deliverability in scope? "Lands in inbox / passes SPF, DKIM, DMARC" is a separate
non-blocking suite, not part of the functional OTP test. Decide upfront.
- Local-only preview, or CI assertions? Previewing a template during dev is Ethereal;
asserting in CI is Mailpit/Mailosaur/MailSlurp. Don't confuse the two.
Core Principles
Capture the real email; never shortcut past it. Calling the reset endpoint directly
or hardcoding a token skips the exact integration the test exists to cover — templating,
recipient resolution, link generation, token signing. Submit on the UI, read the inbox.
Poll, never sleep. Email arrival is asynchronous. A fixed waitForTimeout is either
too short (flake) or too slow (wasted minutes) and is the #1 cause of flaky email tests.
Use expect.poll / .toPass against /api/v1/messages, or a built-in waiter
(messages.get, waitForLatestEmail) that already polls for you.
One unique recipient per test. Two parallel tests both reading "the latest signup
email" grab each other's mail. Make every test's address unique (plus-addressing or a
per-test inbox) and filter by recipient when reading. Clearing the inbox between
tests does NOT survive parallelism.
Extract from the body with an anchored regex, guarded. Pull the OTP / link from the
email body (message.Text / message.HTML), not the live page. Use \d{6} /
.match( and assert the match is not null — a missing code must fail loudly, not become
undefined.
Assert content, not existence. "An email arrived" is a weak assertion. Check the
subject, the from address, and that links point to the right domain. Wrong-template
and wrong-link bugs only surface if you assert on content.
Deliverability is a separate, non-blocking suite. SPF/DKIM/DMARC come from a real
receiving server's authentication, never from the body text — and they must not block
the functional flow tests.
Capture-inbox decision tree
Pick the cheapest tool that can actually receive your mail. Default to Mailpit for
local + CI functional tests; reach for a hosted inbox only when you need real addresses or
high-parallelism isolation.
| Tool |
Hosting / cost |
Address type |
Use when |
| Mailpit |
Self-host, single binary or docker, free / open source |
Any local SMTP recipient |
Default. Local + GitHub Actions functional tests, tight budget. REST API at :8025 (/api/v1/messages). |
| Mailosaur |
Hosted (API key), paid |
Real *.mailosaur.net addresses |
Staging/prod-like flows needing a real deliverable address; auto-waiting messages.get(serverId, { sentTo }); structured links/codes; real SPF/DKIM/DMARC. |
| MailSlurp |
Hosted (API key), paid |
Real, per-inbox |
Per-test throwaway inboxes via createInbox() + waitForLatestEmail; strong parallel isolation. |
| Ethereal |
Hosted throwaway, free |
Captures, delivers nothing |
Local-dev template preview only (createTestAccount + getTestMessageUrl). NOT for CI assertions. |
For the budget signup-flow case (local + GitHub Actions, self-host fine): use Mailpit
— a single binary / docker image with a free, open-source REST API at :8025. If you
later need a real deliverable address, graduate that suite to Mailosaur or
MailSlurp (hosted inboxes with real addresses). Do not "just check the database instead
of the email" — that proves the row was written, not that the email was sent, addressed,
and linkable.
Avoid: MailHog — archived/unmaintained since 2020; Mailpit is its drop-in replacement
(same ports, compatible API), verified mid-2026. Also skip smtp4dev / Papercut for new
suites — Mailpit's API and full-text search are better for automated assertions.
See references/mailpit-playwright.md for the docker-compose, the polling helper, and the
extraction utilities; references/hosted-inboxes.md for Mailosaur / MailSlurp / Ethereal.
Polling an inbox (Mailpit)
Read the list endpoint with Playwright's request fixture, find the message addressed to
this test's recipient, then fetch the full body by ID. Use expect.poll with a timeout
and intervals — it retries until a match appears, so fast inboxes resolve instantly and
slow ones still pass.
// `request` is the Playwright APIRequestContext fixture; plain fetch() works too.
await expect.poll(async () => {
const res = await request.get(`http://localhost:8025/api/v1/messages?query=to:${encodeURIComponent(to)}`);
const { messages } = await res.json();
return messages.find((m) => m.To.some((t) => t.Address === to))?.ID ?? null;
}, { timeout: 30_000, intervals: [500, 1_000, 2_000] }).not.toBeNull();
// then: request.get(`http://localhost:8025/api/v1/message/${id}`) → { Text, HTML, Subject, From, To }
The query=to: filter plus the .find on the recipient is what makes parallel tests
deterministic. Never take messages[0] / messages.at(-1) (newest overall) with no
recipient filter. Full helper in references/mailpit-playwright.md.
Extracting OTPs and links
Match against the email body, anchored, with a null guard:
const otp = body.match(/\b(\d{6})\b/)?.[1];
expect(otp, 'no OTP in email body').toBeTruthy(); // throw / fail if null
const link = body.match(/https?:\/\/\S*(?:verify|confirm|reset|token=)\S*/i)?.[0];
if (!link) throw new Error('no verification link in email body');
Do NOT slice by index (body.split(' ')[3], substring(0, 6), indexOf('code')) — those
break the moment the template changes a word. Do NOT read innerText of the live page when
you mean the email body. If a 6-digit code could collide with other numbers, anchor on the
label: body.match(/code[:\s]+(\d{6})/i). Hosted services expose structured
message.html.links / message.html.codes — prefer those when available. See
references/mailpit-playwright.md.
Deterministic addresses (parallel isolation)
The parallel-flake bug: two tests sign up at once and both poll for "the latest signup
email," so they swap messages. Fixes, in order of preference:
- Per-test unique address — plus-addressing / sub-addressing:
user+${randomUUID()}@example.com, or signup.${Date.now()}@.... Most providers route
user+anything@ to user@, so one real mailbox yields infinite unique recipients.
- Filter every read by recipient —
sentTo (Mailosaur) or a query=to: + .find
match (Mailpit). Never take the newest message overall.
- Per-test dedicated inbox — MailSlurp
createInbox() gives each test its own inbox;
Mailosaur gives each test a unique address on your server domain.
Clearing the inbox between tests is not sufficient under parallelism — two tests
running at the same instant still collide. Unique address + recipient filter is the real
fix. See references/hosted-inboxes.md.
Asserting subject / from / headers / links
After capture, assert on content:
expect(message.subject).toBe('Welcome to Example') — catches wrong-template bugs.
expect(message.from?.[0].email).toBe('hello@example.com') — catches misconfigured
sender / reply-to.
- Headers (
List-Unsubscribe, custom X- headers) when your product sets them.
- Links point to the right domain:
expect(links.every((l) => new URL(l.href).hostname.endsWith('staging.example.com'))).toBe(true).
Mailosaur example asserting subject, from, and link domain is in
references/hosted-inboxes.md.
Deliverability: SPF / DKIM / DMARC
Keep this in its own non-blocking suite, separate from functional flow tests. SPF,
DKIM, and DMARC pass/fail + alignment come from a real receiving server authenticating
your sending domain — they are not strings in the body, so never
body.includes('spf') or body.match(/dkim/). And Mailpit does not validate
SPF/DKIM/DMARC alignment — it only does basic SpamAssassin content scoring, because
nothing was sent over real DNS. Real alignment needs a hosted send-and-receive
(Mailosaur deliverability report, or mail-tester.com for a one-off). Tag the suite
@deliverability, run it as a non-required CI job (continue-on-error), and never assert
deliverability inside the OTP / reset flow test. See references/deliverability.md.
Flaky email in CI
Tests pass locally but the email "hasn't arrived yet" when CI asserts. The four root
causes — diagnose all of them, do not just bump the sleep:
- A fixed sleep instead of polling.
waitForTimeout / arbitrary delay races the
email. Replace with expect.poll / .toPass / a built-in waitFor.
- Timeout too short. CI mail delivery is slower than local. Once polling, increase the
poll
timeout (e.g. 30–60s) rather than adding a longer blind sleep.
- No recipient filter. Reading the newest message overall picks up another test's mail
under parallelism. Filter by
sentTo / to: and use a unique address per test.
- Stale messages from a previous run. An old matching email satisfies the assertion
before the new one arrives. Clear the inbox in global setup and/or make the address
unique per run so prior-run mail can't match.
Retrying the whole job, quarantining the test, or raising a global sleep to 30s treats the
symptom and leaves the race in place.
Anti-Patterns
1. Fixed sleep before reading the inbox
page.waitForTimeout(5000) / setTimeout / sleep() then read. Too short flakes, too long
wastes minutes. Poll with expect.poll against /api/v1/messages (or a built-in waiter).
2. Recommending a dead capture tool
MailHog is archived (2020). Papercut / smtp4dev are weaker for automation. Use Mailpit.
3. Checking the database instead of the email
A DB row proves the write happened, not that the email was sent, addressed, and linkable.
Read the actual captured message.
4. Shortcutting past the email
Calling the reset endpoint directly or hardcoding a token skips templating, link
generation, and token signing. Capture the email, extract the link, page.goto it.
5. Brittle index-based extraction
body.split(' ')[3], substring(0, 6), indexOf('code'). Use an anchored \d{6} regex
with a null guard. And extract from the email body, not the live page's innerText.
6. Newest-message-overall with no recipient filter
messages[0] / messages.at(-1) collide under parallelism. Filter by recipient and use a
unique per-test address; "delete all messages between tests" alone does not fix it.
7. Asserting only that an email exists
No subject / from / link checks misses wrong-template and wrong-link bugs. Assert
content.
8. Regexing SPF/DKIM/DMARC out of the body, or trusting Mailpit for it
Auth results come from a real receiving server, not body text; Mailpit only does spam
scoring. Use Mailosaur's deliverability report, in a separate non-blocking suite.
9. IMAP libraries against a real mailbox
imap-simple / node-imap / imapflow reinvent polling and lose isolation. Use
MailSlurp createInbox + waitForLatestEmail, one inbox per test.
10. Ethereal in CI, or a paid service for a local preview
Ethereal delivers nothing — it's preview-only (createTestAccount + getTestMessageUrl).
Don't assert on it in CI; equally, don't spin up a paid hosted service just to eyeball a
template locally.
Verification
Prove the suite actually captures and asserts, smallest check first:
- Capture is wired:
curl -s localhost:8025/api/v1/messages | jq '.total' returns a
number (Mailpit up, API reachable). For a hosted inbox, a one-line messages.get /
createInbox smoke script returns without auth error.
- No blind sleeps:
grep -rE 'waitForTimeout|sleep\(|setTimeout' tests/ over the email
specs prints nothing.
- The flow is green and real: run the signup/reset spec and confirm it fails when you
temporarily break the template subject — if it still passes, you are not asserting content.
- Determinism holds: run the email specs with
--workers=4 --repeat-each=3; a passing
run proves the per-recipient filter survives parallelism.
- Deliverability is isolated:
--grep @deliverability selects only the auth suite, and
that CI job is continue-on-error / non-required.
Done When
- The capture tool is chosen against the decision tree and recorded in
.agents/qa-project-context.md (Mailpit for local/CI, a hosted inbox only where a real
address is needed).
- No email test contains
waitForTimeout / sleep / setTimeout before reading the
inbox — grep -rE 'waitForTimeout|sleep\(|setTimeout' tests/ over the email specs is
clean; arrival is awaited via expect.poll / .toPass / a built-in waiter.
- Each email test uses a unique recipient (plus-address or per-test inbox) and filters
reads by that recipient — no
messages[0] / messages.at(-1) without a filter.
- OTP/link extraction uses an anchored regex (
\d{6}, https?://...) with a null guard
that fails the test on no match.
- At least the signup-confirmation (or reset / magic-link) flow has a green E2E test that
captures the real email and completes the flow through
page.goto(link).
- Content assertions on
subject, from, and link domain exist — not just existence.
- Deliverability (SPF/DKIM/DMARC) tests, if in scope, live in a separate
@deliverability
suite that is non-blocking in CI.
Related Skills
- playwright-automation — the browser-driving half of every email flow: forms,
navigation, fixtures, and the poll helpers. This skill adds the inbox side.
- api-testing — go there to test the email provider's API directly or to test that your
app sends mail; this skill is about receiving and asserting in an E2E flow.
- test-data-management — generating unique per-test addresses, factories, and seeded
users that feed the recipient strategy here.
- qa-project-context — records the chosen capture tool, SMTP target, and credentials so
every email test shares one configuration.
Reference Files (in references/)
- mailpit-playwright.md — docker-compose, the
expect.poll Mailpit helper, OTP/link
extraction utilities, and full password-reset / signup / OTP / magic-link E2E tests.
- hosted-inboxes.md — Mailosaur (
messages.get auto-wait, real addresses, structured
links/codes), MailSlurp (createInbox + waitForLatestEmail, per-test inbox), and
Ethereal (local preview via createTestAccount + getTestMessageUrl).
- deliverability.md — SPF/DKIM/DMARC as a separate non-blocking suite, why body-regex
and Mailpit don't validate auth, and the Mailosaur deliverability assertion.
1---2name: email-testing3description: End-to-end testing of email-dependent flows — signup confirmation, password reset, magic-link login, OTP/MFA codes, and notification emails. Covers the capture-inbox decision tree (Mailpit, Mailosaur, MailSlurp, Ethereal), Playwright polling without fixed sleeps, regex extraction of links/OTPs from the email body, deterministic per-test addresses (plus-addressing, per-inbox), subject/from/header/link assertions, and SPF/DKIM/DMARC deliverability checks as a separate suite. Use when: "test the signup confirmation email," "password reset email test," "magic-link login test," "capture OTP from email," "Mailpit," "Mailosaur," "MailSlurp," "email arrives flaky in CI," "assert email subject/from/links." Not for: Sending transactional email from your app code, or API-only contract tests of an email provider — those are api-testing / app concerns. Email HTML rendering across clients (Outlook/Gmail dark mode) is out of scope (note it as a gap; use visual-testing or Litmus). Related: playwright-automation, api-testing,4license: MIT5---6
7<objective>
8Email-dependent flows fail silently: a test that "signs up and clicks confirm" by calling
9the confirm endpoint directly never proves the email was generated, addressed, templated,
10and linkable. This skill captures the real email, waits for it without a fixed sleep,
11extracts the OTP or link from the body with an anchored regex, and completes the flow —
12so a broken template, an unsigned token, or a wrong-recipient bug actually fails the test.
13It also keeps deliverability (SPF/DKIM/DMARC) in a separate non-blocking suite so a DNS
14problem never reds your functional gate.
15</objective>
16
17---
18
19## Quick Route
20
21| Situation | Go to |
22|-----------|-------|
23| Pick a capture tool | "Capture-inbox decision tree" below |
24| Poll an inbox without a sleep | `references/mailpit-playwright.md` (polling helper) |
25| Pull an OTP / link out of the body | `references/mailpit-playwright.md` (extraction) |
26| Full password-reset / signup / magic-link E2E | `references/mailpit-playwright.md` |
27| Real addresses on staging | `references/hosted-inboxes.md` (Mailosaur) |
28| Per-test throwaway inbox | `references/hosted-inboxes.md` (MailSlurp) |
29| Just preview a template locally | `references/hosted-inboxes.md` (Ethereal) |
30| Flag SPF/DKIM/DMARC problems | `references/deliverability.md` |
31| Tests pass locally, "no email yet" in CI | "Flaky email in CI" below |
32
33---
34
35## Discovery Questions
36
37Check `.agents/qa-project-context.md` first — if it exists, use it and skip anything
38answered there.
39
40- **Where does the email need to be received?** Local capture (Mailpit) covers most
41 functional flows for free. A *real, externally-deliverable* address (staging, a third-
42 party ESP, real DNS) means a hosted inbox (Mailosaur / MailSlurp). This is the single
43 biggest tool-selection driver.
44- **How parallel is the suite?** High parallelism makes "the latest email" ambiguous —
45 you need per-test unique addresses or per-test inboxes, not a shared mailbox.
46- **Which flows?** Signup confirmation, password reset, magic-link login, OTP/MFA,
47 notification emails — they share one shape (capture, extract, complete) but differ in
48 what you extract (link vs 6-digit code).
49- **Is deliverability in scope?** "Lands in inbox / passes SPF, DKIM, DMARC" is a separate
50 non-blocking suite, not part of the functional OTP test. Decide upfront.
51- **Local-only preview, or CI assertions?** Previewing a template during dev is Ethereal;
52 asserting in CI is Mailpit/Mailosaur/MailSlurp. Don't confuse the two.
53
54---
55
56## Core Principles
57
581. **Capture the real email; never shortcut past it.** Calling the reset endpoint directly
59 or hardcoding a token skips the exact integration the test exists to cover — templating,
60 recipient resolution, link generation, token signing. Submit on the UI, read the inbox.
61
622. **Poll, never sleep.** Email arrival is asynchronous. A fixed `waitForTimeout` is either
63 too short (flake) or too slow (wasted minutes) and is the #1 cause of flaky email tests.
64 Use `expect.poll` / `.toPass` against `/api/v1/messages`, or a built-in waiter
65 (`messages.get`, `waitForLatestEmail`) that already polls for you.
66
673. **One unique recipient per test.** Two parallel tests both reading "the latest signup
68 email" grab each other's mail. Make every test's address unique (plus-addressing or a
69 per-test inbox) and **filter by recipient** when reading. Clearing the inbox between
70 tests does NOT survive parallelism.
71
724. **Extract from the body with an anchored regex, guarded.** Pull the OTP / link from the
73 email body (`message.Text` / `message.HTML`), not the live page. Use `\d{6}` /
74 `.match(` and assert the match is not null — a missing code must fail loudly, not become
75 `undefined`.
76
775. **Assert content, not existence.** "An email arrived" is a weak assertion. Check the
78 `subject`, the `from` address, and that links point to the right domain. Wrong-template
79 and wrong-link bugs only surface if you assert on content.
80
816. **Deliverability is a separate, non-blocking suite.** SPF/DKIM/DMARC come from a real
82 receiving server's authentication, never from the body text — and they must not block
83 the functional flow tests.
84
85---
86
87## Capture-inbox decision tree
88
89Pick the cheapest tool that can actually receive your mail. Default to **Mailpit** for
90local + CI functional tests; reach for a hosted inbox only when you need real addresses or
91high-parallelism isolation.
92
93| Tool | Hosting / cost | Address type | Use when |
94|------|----------------|--------------|----------|
95| **Mailpit** | Self-host, single binary or docker, **free / open source** | Any local SMTP recipient | Default. Local + GitHub Actions functional tests, tight budget. REST API at `:8025` (`/api/v1/messages`). |
96| **Mailosaur** | Hosted (API key), paid | **Real** `*.mailosaur.net` addresses | Staging/prod-like flows needing a real deliverable address; auto-waiting `messages.get(serverId, { sentTo })`; structured links/codes; real SPF/DKIM/DMARC. |
97| **MailSlurp** | Hosted (API key), paid | Real, per-inbox | Per-test throwaway inboxes via `createInbox()` + `waitForLatestEmail`; strong parallel isolation. |
98| **Ethereal** | Hosted throwaway, free | Captures, **delivers nothing** | Local-dev template **preview** only (`createTestAccount` + `getTestMessageUrl`). NOT for CI assertions. |
99
100For the budget signup-flow case (local + GitHub Actions, self-host fine): use **Mailpit**
101— a single binary / docker image with a free, open-source REST API at `:8025`. If you
102later need a real deliverable address, graduate that suite to **Mailosaur** or
103**MailSlurp** (hosted inboxes with real addresses). Do not "just check the database instead
104of the email" — that proves the row was written, not that the email was sent, addressed,
105and linkable.
106
107**Avoid: MailHog** — archived/unmaintained since 2020; Mailpit is its drop-in replacement
108(same ports, compatible API), verified mid-2026. Also skip smtp4dev / Papercut for new
109suites — Mailpit's API and full-text search are better for automated assertions.
110
111See `references/mailpit-playwright.md` for the docker-compose, the polling helper, and the
112extraction utilities; `references/hosted-inboxes.md` for Mailosaur / MailSlurp / Ethereal.
113
114---
115
116## Polling an inbox (Mailpit)
117
118Read the list endpoint with Playwright's `request` fixture, find the message addressed to
119*this test's* recipient, then fetch the full body by ID. Use `expect.poll` with a `timeout`
120and `intervals` — it retries until a match appears, so fast inboxes resolve instantly and
121slow ones still pass.
122
123```ts
124// `request` is the Playwright APIRequestContext fixture; plain fetch() works too.
125await expect.poll(async () => {
126 const res = await request.get(`http://localhost:8025/api/v1/messages?query=to:${encodeURIComponent(to)}`);
127 const { messages } = await res.json();
128 return messages.find((m) => m.To.some((t) => t.Address === to))?.ID ?? null;
129}, { timeout: 30_000, intervals: [500, 1_000, 2_000] }).not.toBeNull();
130// then: request.get(`http://localhost:8025/api/v1/message/${id}`) → { Text, HTML, Subject, From, To }
131```
132
133The `query=to:` filter plus the `.find` on the recipient is what makes parallel tests
134deterministic. Never take `messages[0]` / `messages.at(-1)` (newest overall) with no
135recipient filter. Full helper in `references/mailpit-playwright.md`.
136
137---
138
139## Extracting OTPs and links
140
141Match against the **email body**, anchored, with a null guard:
142
143```ts
144const otp = body.match(/\b(\d{6})\b/)?.[1];
145expect(otp, 'no OTP in email body').toBeTruthy(); // throw / fail if null
146
147const link = body.match(/https?:\/\/\S*(?:verify|confirm|reset|token=)\S*/i)?.[0];
148if (!link) throw new Error('no verification link in email body');
149```
150
151Do NOT slice by index (`body.split(' ')[3]`, `substring(0, 6)`, `indexOf('code')`) — those
152break the moment the template changes a word. Do NOT read `innerText` of the live page when
153you mean the email body. If a 6-digit code could collide with other numbers, anchor on the
154label: `body.match(/code[:\s]+(\d{6})/i)`. Hosted services expose structured
155`message.html.links` / `message.html.codes` — prefer those when available. See
156`references/mailpit-playwright.md`.
157
158---
159
160## Deterministic addresses (parallel isolation)
161
162The parallel-flake bug: two tests sign up at once and both poll for "the latest signup
163email," so they swap messages. Fixes, in order of preference:
164
165- **Per-test unique address** — plus-addressing / sub-addressing:
166 `user+${randomUUID()}@example.com`, or `signup.${Date.now()}@...`. Most providers route
167 `user+anything@` to `user@`, so one real mailbox yields infinite unique recipients.
168- **Filter every read by recipient** — `sentTo` (Mailosaur) or a `query=to:` + `.find`
169 match (Mailpit). Never take the newest message overall.
170- **Per-test dedicated inbox** — MailSlurp `createInbox()` gives each test its own inbox;
171 Mailosaur gives each test a unique address on your server domain.
172
173Clearing the inbox between tests is **not** sufficient under parallelism — two tests
174running at the same instant still collide. Unique address + recipient filter is the real
175fix. See `references/hosted-inboxes.md`.
176
177---
178
179## Asserting subject / from / headers / links
180
181After capture, assert on content:
182
183- `expect(message.subject).toBe('Welcome to Example')` — catches wrong-template bugs.
184- `expect(message.from?.[0].email).toBe('hello@example.com')` — catches misconfigured
185 sender / reply-to.
186- Headers (`List-Unsubscribe`, custom `X-` headers) when your product sets them.
187- Links point to the right domain:
188 `expect(links.every((l) => new URL(l.href).hostname.endsWith('staging.example.com'))).toBe(true)`.
189
190Mailosaur example asserting `subject`, `from`, and link domain is in
191`references/hosted-inboxes.md`.
192
193---
194
195## Deliverability: SPF / DKIM / DMARC
196
197Keep this in its **own non-blocking suite**, separate from functional flow tests. SPF,
198DKIM, and DMARC `pass`/`fail` + alignment come from a real receiving server authenticating
199your sending domain — they are **not** strings in the body, so never
200`body.includes('spf')` or `body.match(/dkim/)`. And **Mailpit does not validate
201SPF/DKIM/DMARC** alignment — it only does basic SpamAssassin content scoring, because
202nothing was sent over real DNS. Real alignment needs a hosted send-and-receive
203(**Mailosaur** deliverability report, or mail-tester.com for a one-off). Tag the suite
204`@deliverability`, run it as a non-required CI job (`continue-on-error`), and never assert
205deliverability inside the OTP / reset flow test. See `references/deliverability.md`.
206
207---
208
209## Flaky email in CI
210
211Tests pass locally but the email "hasn't arrived yet" when CI asserts. The four root
212causes — diagnose all of them, do not just bump the sleep:
213
2141. **A fixed sleep instead of polling.** `waitForTimeout` / arbitrary delay races the
215 email. Replace with `expect.poll` / `.toPass` / a built-in `waitFor`.
2162. **Timeout too short.** CI mail delivery is slower than local. Once polling, increase the
217 poll `timeout` (e.g. 30–60s) rather than adding a longer blind sleep.
2183. **No recipient filter.** Reading the newest message overall picks up another test's mail
219 under parallelism. Filter by `sentTo` / `to:` and use a unique address per test.
2204. **Stale messages from a previous run.** An old matching email satisfies the assertion
221 before the new one arrives. Clear the inbox in global setup and/or make the address
222 unique per run so prior-run mail can't match.
223
224Retrying the whole job, quarantining the test, or raising a global sleep to 30s treats the
225symptom and leaves the race in place.
226
227---
228
229## Anti-Patterns
230
231### 1. Fixed sleep before reading the inbox
232`page.waitForTimeout(5000)` / `setTimeout` / `sleep()` then read. Too short flakes, too long
233wastes minutes. Poll with `expect.poll` against `/api/v1/messages` (or a built-in waiter).
234
235### 2. Recommending a dead capture tool
236MailHog is archived (2020). Papercut / smtp4dev are weaker for automation. Use Mailpit.
237
238### 3. Checking the database instead of the email
239A DB row proves the write happened, not that the email was sent, addressed, and linkable.
240Read the actual captured message.
241
242### 4. Shortcutting past the email
243Calling the reset endpoint directly or hardcoding a token skips templating, link
244generation, and token signing. Capture the email, extract the link, `page.goto` it.
245
246### 5. Brittle index-based extraction
247`body.split(' ')[3]`, `substring(0, 6)`, `indexOf('code')`. Use an anchored `\d{6}` regex
248with a null guard. And extract from the email body, not the live page's `innerText`.
249
250### 6. Newest-message-overall with no recipient filter
251`messages[0]` / `messages.at(-1)` collide under parallelism. Filter by recipient and use a
252unique per-test address; "delete all messages between tests" alone does not fix it.
253
254### 7. Asserting only that an email exists
255No `subject` / `from` / link checks misses wrong-template and wrong-link bugs. Assert
256content.
257
258### 8. Regexing SPF/DKIM/DMARC out of the body, or trusting Mailpit for it
259Auth results come from a real receiving server, not body text; Mailpit only does spam
260scoring. Use Mailosaur's deliverability report, in a separate non-blocking suite.
261
262### 9. IMAP libraries against a real mailbox
263`imap-simple` / `node-imap` / `imapflow` reinvent polling and lose isolation. Use
264MailSlurp `createInbox` + `waitForLatestEmail`, one inbox per test.
265
266### 10. Ethereal in CI, or a paid service for a local preview
267Ethereal delivers nothing — it's preview-only (`createTestAccount` + `getTestMessageUrl`).
268Don't assert on it in CI; equally, don't spin up a paid hosted service just to eyeball a
269template locally.
270
271---
272
273## Verification
274
275Prove the suite actually captures and asserts, smallest check first:
276
277- **Capture is wired:** `curl -s localhost:8025/api/v1/messages | jq '.total'` returns a
278 number (Mailpit up, API reachable). For a hosted inbox, a one-line `messages.get` /
279 `createInbox` smoke script returns without auth error.
280- **No blind sleeps:** `grep -rE 'waitForTimeout|sleep\(|setTimeout' tests/` over the email
281 specs prints nothing.
282- **The flow is green and real:** run the signup/reset spec and confirm it fails when you
283 temporarily break the template subject — if it still passes, you are not asserting content.
284- **Determinism holds:** run the email specs with `--workers=4 --repeat-each=3`; a passing
285 run proves the per-recipient filter survives parallelism.
286- **Deliverability is isolated:** `--grep @deliverability` selects only the auth suite, and
287 that CI job is `continue-on-error` / non-required.
288
289## Done When
290
291- The capture tool is chosen against the decision tree and recorded in
292 `.agents/qa-project-context.md` (Mailpit for local/CI, a hosted inbox only where a real
293 address is needed).
294- No email test contains `waitForTimeout` / `sleep` / `setTimeout` before reading the
295 inbox — `grep -rE 'waitForTimeout|sleep\(|setTimeout' tests/` over the email specs is
296 clean; arrival is awaited via `expect.poll` / `.toPass` / a built-in waiter.
297- Each email test uses a unique recipient (plus-address or per-test inbox) and filters
298 reads by that recipient — no `messages[0]` / `messages.at(-1)` without a filter.
299- OTP/link extraction uses an anchored regex (`\d{6}`, `https?://...`) with a null guard
300 that fails the test on no match.
301- At least the signup-confirmation (or reset / magic-link) flow has a green E2E test that
302 captures the real email and completes the flow through `page.goto(link)`.
303- Content assertions on `subject`, `from`, and link domain exist — not just existence.
304- Deliverability (SPF/DKIM/DMARC) tests, if in scope, live in a separate `@deliverability`
305 suite that is non-blocking in CI.
306
307---
308
309## Related Skills
310
311- **playwright-automation** — the browser-driving half of every email flow: forms,
312 navigation, fixtures, and the poll helpers. This skill adds the inbox side.
313- **api-testing** — go there to test the email provider's API directly or to test that your
314 app *sends* mail; this skill is about *receiving and asserting* in an E2E flow.
315- **test-data-management** — generating unique per-test addresses, factories, and seeded
316 users that feed the recipient strategy here.
317- **qa-project-context** — records the chosen capture tool, SMTP target, and credentials so
318 every email test shares one configuration.
319
320---
321
322## Reference Files (in `references/`)
323
324- **mailpit-playwright.md** — docker-compose, the `expect.poll` Mailpit helper, OTP/link
325 extraction utilities, and full password-reset / signup / OTP / magic-link E2E tests.
326- **hosted-inboxes.md** — Mailosaur (`messages.get` auto-wait, real addresses, structured
327 links/codes), MailSlurp (`createInbox` + `waitForLatestEmail`, per-test inbox), and
328 Ethereal (local preview via `createTestAccount` + `getTestMessageUrl`).
329- **deliverability.md** — SPF/DKIM/DMARC as a separate non-blocking suite, why body-regex
330 and Mailpit don't validate auth, and the Mailosaur deliverability assertion.