Sendmail with HTML problem
Hi all ,
I have problem about sending email with php that runing on linux server and I use postfix for sending email. I send email with HTML code but somebody got my email in the right format but somebody got the text html code only like below
<html>
<head>
<title>Problem</title>
</head>
<body>
Hello Could you help me I have some problem about HTML mail
</body>
</html>
I use header like this
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type:text/html; charset=iso-8859-1\r\n";
$headers .= "From:Webmster<webmster@abcd.com]>\r\n";
So I don't know what 's wrong Why somebody cannot got email in the right format of HTML.It's about my server,php,apache,postix or client's mail server.
Puliko
|