0

我的登录注册脚本有问题。

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

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

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

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

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

4

1 回答 1

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

于 2012-10-24T18:32:24.373 回答