使用PHPMailer更改返回路径

前端之家收集整理的这篇文章主要介绍了使用PHPMailer更改返回路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法使用 PHPMailer更改返回路径

我做了以下,但没有奏效

$mail->AddCustomHeader('Return-path:test@email.co.za');

我正在使用以下语句发送邮件

if(!$mail->Send()) {
        echo "Mailer Error: " . $mail->ErrorInfo;

    } else {
        //Building the reporting email to report on all the mails send 
        echo "Message REPORT sent!\n";
    }

我收到了电子邮件,但返回路径没有变化?

以下解决了这个问题,我调整了Sender属性,它对我有用. $mail-> Sender =’test@email.co.za’;
原文链接:https://www.f2er.com/php/138366.html

猜你在找的PHP相关文章