我正在尝试使用 PHP mail() 发送简单的 html 电子邮件。
以下代码工作正常
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
If(mail('xyz@gmail.com', 'test mail', 'test<hr>this is a test mail', $headers)){
Echo 'OK';
} else{
Echo 'Not ok';
}
问题:一旦我在正文中输入了一些特定的网址,代码仍然说没问题,但从未收到电子邮件
If(mail('xyz@gmail.com', 'test mail', 'test<hr>this is a test mail from www.xyz.com', $headers)){
Echo 'OK';
} else{
Echo 'Not ok';
}
有人可以指导我这是什么问题以及如何解决它?