Return-Path and Envelope Sender Explained
The Return-Path header controls where bounce notifications go. Learn how it differs from the From address and why alignment matters for DMARC.
By default, AcelleMail wraps every link in your emails with its own tracking domain. If subscribers see clicks.acelle.io in URLs, it looks suspicious and can trigger spam filters. A custom tracking domain like track.yourbrand.com improves trust and deliverability.
Add this DNS record at your domain registrar or DNS provider:
Host: track.yourbrand.com
Type: CNAME
Value: yourserver.com (or the IP via an A record)
TTL: 3600
Wait for propagation (typically 15 minutes to a few hours).
Create /etc/nginx/sites-available/track.yourbrand.com:
server {
listen 80;
server_name track.yourbrand.com;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
}
}
Enable and reload: sudo ln -s ../sites-available/track.yourbrand.com /etc/nginx/sites-enabled/ && sudo nginx -s reload
sudo certbot --nginx -d track.yourbrand.com
Certbot will auto-configure the HTTPS block.
Go to Settings → Sending Domains → [your domain] → Tracking Domain. Enter https://track.yourbrand.com and save.
Test by sending a test email and hovering over a link — it should now show your custom domain.
The Return-Path header controls where bounce notifications go. Learn how it differs from the From address and why alignment matters for DMARC.
BIMI displays your brand logo next to emails in Gmail and Apple Mail. Learn the SVG requirements, VMC certificate, and the DNS TXT record format.
All the DNS records you need to configure for proper email delivery: SPF, DKIM, DMARC, MX, and more.
DNS changes don't take effect immediately. Understand TTL, caching, and how to verify propagation has completed worldwide.
The Return-Path header controls where bounce notifications go. Learn how it differs from the From address and why alignment matters for DMARC.
All the DNS records you need to configure for proper email delivery: SPF, DKIM, DMARC, MX, and more.
BIMI displays your brand logo next to emails in Gmail and Apple Mail. Learn the SVG requirements, VMC certificate, and the DNS TXT record format.
AcelleMail is the self-hosted email marketing platform you control end-to-end.
View Pricing