PHP电子邮件中的警告“其中包含通常用于窃取个人信息的内容” [英] Warrning in PHP email "It contains content that's typically used to steal personal information"

查看:176
本文介绍了PHP电子邮件中的警告“其中包含通常用于窃取个人信息的内容”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用电子邮件脚本后,在电子邮件中会出现以下警告:


请谨慎操作信息。它包含的内容通常是
,用于窃取个人信息。了解更多信息报告此可疑
消息忽略,我信任此消息

Be careful with this message. It contains content that's typically used to steal personal information. Learn more Report this suspicious message Ignore, I trust this message



$email_subject =  $cnm ." |$cnm.com";
        $email_message ="<HTML><BODY><TABLE>";
        $email_message .= "<TR><TD> Job Descrption :".$jb_des ."</TD></TR>";
        $email_message .="<TR><TD>Employer Name :".$frm_nm." </TD></TR>" ;
        $email_message .="<TR><TD>Company Name :".$cnm." </TD></TR>";
        $email_message .="<TR><TD>Message :".$msg." </TD></TR>";
        $email_message .="<TR><TD>Title of Job Opening :".$job_ti." </TD></TR>" ;
        $email_message .="</TABLE></BODY></HTML>";
        $headers = "From:<$frm_nm@abc.com>". "\r\n";
        $headers  .= "MIME-Version: 1.0 ". "\r\n";
        $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
        @mail($to_em,$email_subject, $email_message, $headers); 


推荐答案

您的邮件中包含欺骗性网页,这些网页会窃取用户信息或服务器的域/ IP过去曾被用来窃取个人信息。

Either your message contains a scam web page that steal users informations or the Domain/IP of your server has been used in the past for stealing personal informations.

检查IP是否在 Mxtoolbox
配置反向DNS(将您的域名与IP匹配),SPF和DKIM,发送合法电子邮件,一切都会很好

Check IP if is blacklisted on Mxtoolbox Configure Reverse DNS (Match your domain name with your IP), SPF and DKIM, Send legitimate email and everything will be fine

这篇关于PHP电子邮件中的警告“其中包含通常用于窃取个人信息的内容”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆