PostHog
Weekly digest
A Monday email with the handful of metrics your team actually watches.
AuthorJonas Lindqvist
PublishedApr 2026
LicenseMIT
Installs274
Why it exists
Dashboards are where metrics go to be ignored. A team picked their five numbers, and this mod mails them every Monday with week-over-week movement and a link to the underlying insight. No BI tool, no screenshot round.
What it does
- Pick any saved insights as digest entries
- Week-over-week movement with sparklines
- Sends through your existing SMTP settings
The spec
These acceptance criteria were written with the person who requested the mod, then locked in as its tests. The mod has to pass them on every new release train before it rides along.
- Digest numbers match the PostHog UI for the same week at send time
- An insight that errors shows as unavailable instead of a stale number
mods/weekly-digest/tests/consistency.spec.ts
test("digest matches the insight at send time", async () => {
const digest = await renderDigest(team.digestConfig)
const live = await insights.value(team.weeklySignups)
expect(digest.entry("weekly signups").value).toEqual(live)
})