Dear All I am sending Reply Mail using PHP Those Who sended Mail to me. My Problem is When I send email It sits in SPAM folder .What to do inorder to deliver mail correctly.Any Idea or any change procedure? My Code.
<?php
$email_id="[email protected]";
$recipient = "@gmail.com"; //recipient
$mail_body = $message; //mail body
$subject = "Subject ".$Name.""; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
$header .='Content-type: text/plain; charset=utf-8'."\r\n";
mail($recipient, $subject, $mail_body, $header);/mail command :)
?>