View Single Post
Old 12-17-2006, 04:20 AM  
Nookster
Confirmed IT Professional
 
Industry Role:
Join Date: Nov 2005
Location: Hollywood, CA
Posts: 3,744
Quote:
Originally Posted by Nookster View Post
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);
Nookster is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote