• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Change Return Path Issues in 8.2

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
 
Back
Top