有没有办法使用 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";
}
我收到了电子邮件,但返回路径没有改变?