Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过 mail() 发送电子邮件。
我需要根服务器来更改Return-Path值吗?目前它是www-data@mydomainname.com,但我希望它具有相同的地址,例如Fromand Reply-to。
Return-Path
www-data@mydomainname.com
From
Reply-to
我设置Return-Path如下,但它保持不变www-data@mydomainname.com:
$headers.="Return-Path: $from\r\n";
谢谢你。
也可以设置mail函数的第五个参数来调整返回路径
mail($to, $subject, $message, $headers, "-f email@wherever.com");