嗨亲爱的这是我发送电子邮件的代码我的消息代码是这个
$to = $email;
$subject = "Activation";
$message = "Your activation key is this " .$key.'<br>'.' click here to activate your acount. <a href="activation.php?key='.$key.'">here</a>';
$from = "riaz_qadeer90@yahoo.com";
$headers = "From:" . $from;
if(mail($to,$subject,$message,$headers))
{
echo "Check your email to activate your acount.";
}
问题是当我发送电子邮件时,我的收件箱中显示的整个消息都带有代码。为什么它不显示“点击”作为锚点.....