是否可以更改通过 PHP 的 mail() 函数发送的电子邮件中的 Return-Path 值?
在我在我的站点中发送的电子邮件中,它的值是“www-data@mydomain.com”,它会导致电子邮件传递失败过程中出现一些问题。我想将其设置为我的电子邮件地址。
这是我尝试过的代码:
$headers = 'MIME-Version: 1.0' . "\n";
$headers .= "Content-type: text/html; charset=utf-8" . "\n";
$headers .= "Return-Path: <adminemail@yahoo.com>"."\n";
$headers .= "Errors-To: <adminemail@yahoo.com>"."\n";
// Additional headers
$headers .= "To: email1@yahoo.com <adminemail@yahoo.com>" . "\n";
$headers .= "From: adminemail@yahoo.com <adminemail@yahoo.com>";
// Mail it
mail('email1@yahoo.com', 'test', 'salam', $headers, "f");