我想在电子邮件中使用可点击链接,但它没有反映在通过 php 邮件功能发送的电子邮件中,下面是我的代码
$url = "<html><a href='www.google.com'>Link</a></html>";
$message = "Hi test url ".$url." ";
$$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: Admin <test@ex.com> \r\n";
@mail('test1@ex.com',$subject,$message,$headers);
我从电子邮件中获得的内容:
Hi test url <html><a href='www.google.com'>Link</a></html> ##NEW##