phpmailer (
http://phpmailer.sourceforge.net) will do just fine to
PHP Code:
require_once(DIR . '/includes/class.phpmailer.php');
$mail = new PHPMailer();
$mail->isSendMail(true);
$mail->Priority = 1;
$mail->isHTML(true);
$mail->Encoding = "8bit";
$mail->CharSet = "iso-8859-1";
$mail->From = "";
$mail->FromName = "nobody";
$mail->AddReplyTo("","webmaster");
$mail->AddAddress("$toemail","$username");
$mail->Subject = "$subject";
$mail->Body = "$message";
$mail->AltBody = "";
$mail->WordWrap = 0;
if(!$mail->send());
{
echo "Mailer Error: " . $mail->ErrorInfo;
}
will send HTML email easy !