Quote:
Originally Posted by Nookster
Simple html works fine for me. Although you have to form the proper headers. I use php to make it. 
|
Here...
Code:
$from = '[email protected]';
$message = '<html><head><title>Message Title</title></head>
<body bgcolor=#ffffff text=#ff5500><div align=center>
<font face=tahoma size=2 color=#ff5500><b>
Hi, this is a message in html.<br /><br />';
$message .= 'You are receiving this email message because you or someone else has submitted information to an adult related website using your email address and this message is it\'s reply.
</font></div></body></html>';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Your Name <' . $from . '>' . "\r\n";
$subject = 'Hi there!';
$to = '[email protected]';
mail($to, $subject, $message, $headers);