Hi,
I am trying to send some HTML through the mail function. I have set my headers to:
$to = "MYEMAIL@hotmail.com";
$subject= "Placement Agreement Form";
$mailheaders = "From: PlacementAgreementForm\r\nContent-Type: text/html";
$mailheaders .= "Reply-To: $address";
mail($to, $subject, $msg, $mailheaders);
However, instead of getting a HTML e-mail I get an e-mail with an attachment. This attachment has no extenstion and can therefore not be viewed. When I change the attachments name to add the extension .html. I get my e-mail.
How do I get the html to appear in the actual e-mail?