Warrning in PHP email "It contains content that's typically used to steal personal information" -


after use email script, in email following warning appears:

be careful message. contains content that's typically used steal personal information. learn more report suspicious message ignore, trust 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);  

this warning appearing because email host of address you're sending email cannot verify you're real sender of email. email server knows information you're sending questionable.

unless email coming domain: "abc.com" example it's warning appear whoever viewing email.

this caused information or links in email receiver's email server doesn't like.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -