Connection Setup
Follow these 3 steps once. After that, every reply you get lands automatically in the dashboard and gets classified by AI.
1
Set up your Reply domain
One domain that receives all replies β never used for sending
Buy any cheap domain ($8β12/yr) β for example replies.youragencyname.com or r.yourdomain.com. This domain only receives replies, it never sends. So it never gets blacklisted.
2
Connect Mailgun (free)
Mailgun routes incoming replies to this dashboard via webhook
- Go to mailgun.com β create a free account
- Click Add Domain β enter your reply domain
- Add the DNS records from Step 1
- Go to Receiving β Routes β Create Route
- Expression:
catch_all() - Action:
forward("YOUR_WEBHOOK_URL")(see below) - Click Create Route
Loadingβ¦
3
Add Reply-To to your email template
One header in every email β that's all Jarda needs to add
In your sending script / email template, set the Reply-To header like this. Replace CAMPAIGN and VARIATION with the actual values per batch.
Reply-To: r+CAMPAIGN+VARIATION@replies.yourdomain.com
Example for batch A of "plumbers-may-2026" campaign:
Reply-To: r+plumbers-may-2026+A@replies.yourdomain.com
msg['Reply-To'] = f"r+{campaign}+{variation}@replies.yourdomain.com"
curl -X POST https://your-tracker.vercel.app/api/send \
-H "Content-Type: application/json" \
-d '{"c":"plumbers-may-2026","v":"A","n":37500,"subject":"Quick question"}'
-H "Content-Type: application/json" \
-d '{"c":"plumbers-may-2026","v":"A","n":37500,"subject":"Quick question"}'