I'll get straight to the point, here's how I've coded my mailform:
<html>
<body>
<?php
$email = $_REQUEST['email'];
$subject = "Contact Us Query";
$message = $_REQUEST['message'];
$message = stripslashes($message);
mail("myemail@msn.com", "$subject",
$message, "From:" . $email);
header("Location:success.php");
?>
</body>
</html>
My problem is that although the emails get sent, what happens is that they all go to my junk mail rather than inbox. Can I possibly alter the code some way so that the mails dont get recognised as junk and go to my inbox instead? Or something I can do in my hotmail inbox perhaps?
Cheers in advance.