【问题标题】:email send with php identified as phishing使用 php 识别为网络钓鱼的电子邮件发送
【发布时间】:2012-10-14 20:33:30
【问题描述】:

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

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

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

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

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

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

【问题讨论】:

  • 你的validatingsite.de真的是一个IP地址吗?
  • 是的,它类似于 135.6.8.345/validatingsite.php 直到整个网站准备好,然后我会购买一个域(IP 地址发明)

标签: php html thunderbird


【解决方案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/)

【讨论】:

  • 非常感谢,很高兴知道。那以后就自己解决了
猜你喜欢
  • 2015-02-16
  • 1970-01-01
  • 2019-10-26
  • 2022-11-04
  • 1970-01-01
  • 1970-01-01
  • 2011-09-25
  • 2015-04-05
  • 2012-07-28
相关资源
最近更新 更多