when i use PHP mail it take a long time to be received
and it arrive to junk email
and i send mail online i have a host and domain name on godaddy.com
how to solve this 2 problems
$to=$_SESSION['e'];
$subject='NEW TASK';
$headers ="from: T-Square.com ";
$headers .= "From: T-SQUARE <T-SQUARE.COM>\r\n";
$headers .= "Organization: T-SQUARE COMPANY\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
$headers .= "X-Priority: 3\r\n";
$headers .= "X-Mailer: PHP". phpversion() ."\r\n" ;
$message="YOU HAVE A NEW TASK PLEASE CHECK IT www.eiwms-progroup.com";
$mail=mail($to,$subject,$message,$headers);