T
tman@
Guest
Hello,
I have a script in PHP that sends an email on a particular day. This script worked perfectly and changed the Return Path to my email so that 1. it changed the Return path from Anonymous@ and 2. I would receive any bounces or replies. Since moving from PLESK 7 to 8.2 I cannot figure out a script that will accomplish this???
This is the one that did work...
mail($to,$subject,$body,$headers,"-f [email protected]");
I have also tried the following without success:
mail($to,$subject,$body, "return-path: [email protected]");
mail($to, $subject, $body, "From: $from\n", "-f $from");
mail($to, $subject, $body,"From: ".$sendfrom_email."\nX-mailer: PHP3 Engine\nReturn-Path: [email protected]");
mail("$to", "$subject", "$message", "From: $from\nX-Mailer: PHP/ . $phpversion()", "-f $from");
Any insight into this would be greatly appreciated.
Thanks
T
I have a script in PHP that sends an email on a particular day. This script worked perfectly and changed the Return Path to my email so that 1. it changed the Return path from Anonymous@ and 2. I would receive any bounces or replies. Since moving from PLESK 7 to 8.2 I cannot figure out a script that will accomplish this???
This is the one that did work...
mail($to,$subject,$body,$headers,"-f [email protected]");
I have also tried the following without success:
mail($to,$subject,$body, "return-path: [email protected]");
mail($to, $subject, $body, "From: $from\n", "-f $from");
mail($to, $subject, $body,"From: ".$sendfrom_email."\nX-mailer: PHP3 Engine\nReturn-Path: [email protected]");
mail("$to", "$subject", "$message", "From: $from\nX-Mailer: PHP/ . $phpversion()", "-f $from");
Any insight into this would be greatly appreciated.
Thanks
T