3 include_once('class.phpmailer.php');
\r
5 $mail = new PHPMailer();
\r
6 $body = $mail->getFile('contents.html');
\r
7 $body = eregi_replace("[\]",'',$body);
\r
9 $mail->IsSendmail(); // telling the class to use SendMail transport
\r
11 $mail->From = "name@yourdomain.com";
\r
12 $mail->FromName = "First Last";
\r
14 $mail->Subject = "PHPMailer Test Subject via smtp";
\r
16 $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
\r
18 $mail->MsgHTML($body);
\r
20 $mail->AddAddress("whoto@otherdomain.com", "John Doe");
\r
22 $mail->AddAttachment("images/phpmailer.gif"); // attachment
\r
24 if(!$mail->Send()) {
\r
25 echo "Mailer Error: " . $mail->ErrorInfo;
\r
27 echo "Message sent!";
\r