Doing bulk emails, I face the common problem of bounces flooding the sender address.
In my setup, the From
field is equal to the envelope from. So I am considering the following:
- put a
noreply@
(black hole) intoFrom
and the envelope from, which is where bounces will be sent; - put a real mailbox into
Reply-To
, which is where actual replies (that I don’t want to miss) are supposed to be sent.
But: I’ve read a few discussions of this problem on the Web, and the consensus seems to be: use a real mailbox in From
and envelope from, then use heuristics on your own side to distinguish bounces / auto-replies from the real replies.
So is this the preferred approach, and why? Will my setup not work, and why?