Hi, PHP experts out there.
I am using PHP 4.0.6, Apache and Linux server.
I am having problem of setting my mail to text/html. No matter how I tried the email is keep on sending it as text/plain.
My Source Code:
<?php
$header = "MIME-Version: 1.0\r\n";
$header .= "From: support@myserver.com\r\n";
$header .= "Content-Type: text/html\r\n";
$result = mail("me@tm.net.my","HTML PAGE","ABC",$header);
?>
Result: the mail still in text/plain format.
Experience: I have tried Multipart email method, as well as setting complicated headers,... the result still the same.
Can someone give me some clue whats going on?
Thanks.