您好我正在使用以下代码从php发送电子邮件,这里发送邮件工作正常但邮件正文中的href无效,下面是我的代码,
$subject="Form";
$to="ashok@gmail.com";
$cc="test@gmail.com";
$msg="Hi";
$msg.="<a href='www.google.com' target='_blank'>Click here</a>";
$msg.="<br><br>Regards,<br>Ashok;
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From:'.$from . "\r\n";
$headers .= 'Cc: '.$cc. "\r\n";
mail($to, $subject, $msg, $headers);
请找出问题
答案 0 :(得分:2)
您应该在电子邮件文本中提供包含http://
或https://
的任何链接的完整网址。我曾经使用gmail客户端遇到此问题,如果您错过了http://
或https://
$msg.="<a href='http://www.google.com' target='_blank'>Click here</a>";
这应该有用。