I am having trouble with one specific email address using mail()
It works great with any other email address except one associated with my domain. ie info@bluewaterwebdevelopment.com
Here is the code
$myname = $name;
$from_email = $email;
$to = "info@bluewaterwebdevelopment.com";
$message = "
<html>
<body>
<p><br>$name<br>$email<br>$company<br><br>$comments_txt_output</p>
</body>
</html>";
mail($to, "$subject", $message, "MIME-Version: 1.0\r\n"
."Content-type: text/html; charset=iso-8859-1\r\n"
."From: ".$myname." <".$from_email.">\r\n");
Thanks for the help.
Stan