I am try o send PHP mail through forms mail is getting in inbox in Gmail and yahoo except outlook and Hotmail. In outlook and Hotmail mail is received in junk but i need to got in inbox. Code part is below.
<?php
if(isset($_POST['submit']))
{
//post function is used to get html form data
$to=$_POST['to'];
$subject = $_POST['subject'];
$text_editor=$_POST['text_editor'];
$from = '
[email protected]';
$sign=$_REQUEST['sign'];
$sname='<div><b>'.$sign.'</b><br>Resource Manager, SHIRO Technologies Llc<br>IT, ITeS & Automation Services - Resource Management<br><b>P:</b> 469-941-9530<br><a href="https://
[email protected]"><b>E:</b>
[email protected]</a><br><b>a:</b> 5080 Specutrum Drive Addison TX 75001<br><a href="https://www.shirotechnologies.com"><b>w:</b> shirotechnologies.com</a></div>';
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=iso-8859-1';
$headers[] .= "Organization: Sender Organization";
$headers[] .= "X-Priority: 3";
$headers[] .= "X-Mailer: PHP". phpversion();
// Additional headers
//$headers[] = 'To:'.$to;
$headers[] = 'From:'.$from;
$headers[] = 'Cc:
[email protected]';
// Mail it
$message ='<b>'.$text_editor.'<b><br>
<p>'.$sname.'</p>';
if(mail($to, $subject, $message, implode("\r\n", $headers),"-f$from")){
echo 'Your mail has been sent successfully.';
echo "\n\n".$message;
} else{
echo 'Unable to send email. Please try again.';
}
}
?>