Jump to content

php html mail


kratak

Recommended Posts

Hi

Im trying to use a script to send a html email to various people. If i send it to a hotmail user and open the email, the email does appear correct, processing the html code. However if you access the same email via Outlook (2003) it comes out showing the code rather than interpreting it.

Ive tried several websites and the they all talk about the headers. I have tried several different bits of code in the headers, all have had no effect. Any advice welcome.

Here is my code

[code]
<?php


$email = array('[email protected]', '[email protected]');

foreach ($email as $k => $v) {

$to = $v;
$from = "[email protected]";
$subject = "subject";

$headers = "From: [email protected]\n";
$headers .= "Message-ID: <" . md5(uniqid(time())) . "@mydomain.com>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Date: ".date("D, d M Y H:i:s") . " UT\n";
$headers .= "Reply-To: [email protected]\n";
$headers .= "Return-Path: [email protected]\n";
$headers .= "X-Priority: 3\r\nX-MSmail-Priority: Normal\n";
$headers .= "X-mailer: php/".phpversion()."\n";
$headers .= "X-MimeOLE: Produced By MyDomain\n";
$headers .= "Content-type: text/plain; charset=iso-8859-1\n";


$message = "
<html>
<body>
<p><font color='red'>Hello</font></p>
</body>
</html>";

mail($to, $subject, $message,$headers);



}

?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/14946-php-html-mail/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.