Prevent sent emails treated as junk mails using php mail function
I wrote a PHP script to send emails. My script is like this: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: abc@yahoo.com' . "\r\n"; // Email Variables $toUser = "someone@yahoo.com"; // recipient $subject = "testing"; // subject $body = "<html><body><p> Example of including an image via html \<img\> tag: <br> <img src='../images/profile.jpg'> <br> My new picture <br></p></body></html>"; // content if (mail($toUser,$subject,$body,$headers)) { echo "sent"; } else { echo "failed"; } Well, of course I use a valid