我正在使用 php,使用邮件功能:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: admin@domain.com' . "\r\n";
$headers .= 'Reply-To: Admin <admin@domain.com>' . "\r\n";
// Return Path -
$return_path = "bounce@domain.com";
$toUser... (all necessary variables)
if(mail($toUser,$subject,$body,$headers, "-f".$return_path)){
echo "res=sent";
} else {
echo "res=error";
}
我测试了几封电子邮件,例如 abXXX@kasbkjasbdka.com、8hgb87@9ndksjc9ne.com
(等等,所有无效的、不存在的电子邮件地址)
为什么它不去我的bounce@domain.com????