יש לי את הקוד הנל אשר אני מריץ אותו הוא שולח הודעה אבל הGMAIL מזהה את המייל כדואר זבל
מה הבעיה ?
PHP קוד:
<?
$email = "mikis5w@gmail.com";
$subject = 'dsfsdfsdf';
$message = <<<EOF
דגכדגכ
EOF;
$headers = "MIME-Version: 1.0 \r\n";
$headers .= "Content-type: text/html; charset=windows-1255 \r\n";
$headers .= "From: dsfsdf@sdfsdf.co.il \r\n";
mail($email, $subject, $message, $headers);
?>