Email analytics and tracking
Opens, clicks, bounces, and complaints recorded in real time. Per-email, per-broadcast, per-domain, and per-ISP analytics with exportable reports.
Real-time dashboard
A live dashboard covering delivery, open, click, bounce, and complaint rates across every domain, broadcast, and API key. Exportable as CSV and JSON.
Open and click tracking
Pixel-based open tracking and link-wrapped click tracking, both opt-in per email. Geo and device data is included and never shared with third parties.
Webhook events for custom pipelines
Pipe every tracking event into your data warehouse, product analytics, or CDP over webhooks. Raw events are HMAC-signed and include the full message context.
Send with tracking enabled
typescript
await poststack.emails.send({
from: 'hello@yourdomain.com',
to: 'user@example.com',
subject: 'Your weekly report',
html: '<h1>Weekly Report</h1><a href="https://app.example.com">View Dashboard</a>',
tracking: {
opens: true,
clicks: true,
},
});