3 include_once('../class.phpmailer.php');
5 $mail = new PHPMailer();
7 $body = $mail->getFile('contents.html');
9 $body = eregi_replace("[\]","",$body);
11 $mail->From = "name@yourdomain.com";
12 $mail->FromName = "First Last";
14 $mail->Subject = "PHPMailer Test Subject";
16 $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
18 $mail->MsgHTML($body);
20 $mail->AddAddress("whoto@otherdomain.com", "John Doe");
23 echo 'Failed to send mail';