e56117c096c7f20d5afd9a9227c41cfd2e719ece
[mailer.git] / inc / phpmailer / examples / test_sendmail.php
1 <?php
2
3 include_once('class.phpmailer.php');
4
5 $mail             = new PHPMailer();
6 $body             = $mail->getFile('contents.html');
7 $body             = eregi_replace("[\]",'',$body);
8
9 $mail->IsSendmail(); // telling the class to use SendMail transport
10
11 $mail->From       = "name@yourdomain.com";
12 $mail->FromName   = "First Last";
13
14 $mail->Subject    = "PHPMailer Test Subject via smtp";
15
16 $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
17
18 $mail->MsgHTML($body);
19
20 $mail->AddAddress("whoto@otherdomain.com", "John Doe");
21
22 $mail->AddAttachment("images/phpmailer.gif");             // attachment
23
24 if(!$mail->Send()) {
25   echo "Mailer Error: " . $mail->ErrorInfo;
26 } else {
27   echo "Message sent!";
28 }
29
30 ?>