Does anyone know what's up with Return-Path in php mail();
$headers .= "Return-Path: me@you.com\n";
Generally, it doesn't work.
It turns out that return-path: is set by the Mail Transport agent, and not you.
Reply-to is for the end user. But if the email bounces, it'll go to return-path
Any way around it?
-Shade
$headers .= "Return-Path: me@you.com\n";
Generally, it doesn't work.
It turns out that return-path: is set by the Mail Transport agent, and not you.
Reply-to is for the end user. But if the email bounces, it'll go to return-path
Any way around it?
-Shade
