my exchange server is set to not allow emails with a null <> address to control spam.
I cannot get my php mail() to send an email without a null email address
Here are my headers. Am I missing something
$message = "
<html>
<head>
</head>
<body>
<a href=\"http://www1.domain.com/callcenter/assign_call.php?call_number=$call_number\">Click here to view and assign call to technician.</a>
</body>
</html>";
$to = 'helpdesk@domaincom';
$subject = 'New Trouble Call';
$headers =
"MIME-Version: 1.0\r\nContent-type: text/html; charset=iso-8859-1\r\n".
"From: Helpdesk <helpdesk@doamin.com>\r\n".
"Reply-To: Helpdesk <helpdesk@domain.com>\r\n".
"X-Priority: 1\r\nX-MSMail-Priority: High\r\n X-Mailer: PHP";
mail($to, $subject, $message, $headers);