我的登录注册脚本有问题。
该脚本处理用户的注册信息并保存。另外一封电子邮件会发送给此人,以验证他的电子邮件地址。
问题是这封电子邮件被雷鸟标记为网络钓鱼电子邮件。
//send verify email
$sender = "test@example.de";
$empfaenger = $email;
$betreff = "Welcome";
$mailtext = "Thank you for your registration.
Please go to <a href=\"http://validatingsite.de\">this site</a> and enter your
activationcode in order to verify your email-address";
mail($empfaenger, $betreff, $mailtext, "From: $sender\n" . "Content-Type:
text/html; charset=iso-8859-1\n")
如果我删除链接
<a> href=\"http://validatingsite.de\">this site</a>
电子邮件未标记,一切正常。
有人知道如何解决我的问题吗?我是否在电子邮件中正确添加了链接?