No! :eek:
It's worth it.
Just thought, follow that link, select a mirror and it will take you to the page.
the body of an html email can be as simple as:
<html><body><h1>Hello World</h1></body></html>
let the class do all the hard work - really.
ps: if you use my version, I've just realised that I take you up to the <body> tag and put some styles in automatically. Might be better to get the clean one.
here's my code to do the send (once I've got body)
function sendEmail($subject, $body, $to)
{
include('includes/class.html.mime.mail.inc');
$mail = new html_mime_mail('X-Mailer: Html Mime Mail Class');
$text = strip_tags ($body , "a");
$mail->add_html($body, $text);
$mail->set_charset('iso-8859-1', TRUE);
$mail->build_message();
$mail->send($to, $to, 'List Manager', 'webmaster@mysite.com', $subject);
}