电子邮件发送与PHP识别为网络钓鱼

时间:2012-10-24 18:24:19

标签: php html html5 thunderbird

我的登录注册脚本存在问题。

此脚本处理用户的注册信息并保存。 此外,还会向此人发送一封电子邮件,以验证他的电子邮件地址。

问题是这封电子邮件被雷鸟标记为网络钓鱼邮件。

    //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>

电子邮件未标记,一切正常。

有人知道如何解决我的问题吗? 我是否在电子邮件中正确添加了链接?

1 个答案:

答案 0 :(得分:1)

这是Thunderbird的行为设计:https://support.mozillamessaging.com/en-US/kb/thunderbirds-scam-detection#w_thunderbirds-automatic-scam-filtering

请注意将导致网上诱骗检测的项目列表中的第一个项目符号:links with numerical server names (http://127.0.0.1/)