just add headers to your mail.
Like this:

<?php
$headers =  "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "FROM: what ever \r\n"; // optional
$Subject = "Subject of the mail";
$msg = "Text of the mail <B>including html tags</B>";
$to = "[EMAIL PROTECTED]
mail($to, $Subject, $msg, $headers);
?>
"Dennis Philpot" <[EMAIL PROTECTED]> escribió en el mensaje
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi im quite a n00b, but i get some data out of the database and now i want
> to send an HTML - Email with all tag lik <font> <a href=""> ...
>
> someone knows help
>
> its an windows xp iis 5.0 with php install and an access db
>
> greetz
>
> Dennis
>
>



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to