(no commit message)
[mailer.git] / 0.2.1 / inc / phpmailer / examples / test1.php
1 <?php\r
2 \r
3 include_once('../class.phpmailer.php');\r
4 \r
5 $mail    = new PHPMailer();\r
6 \r
7 $body    = $mail->getFile('contents.html');\r
8 \r
9 $body    = eregi_replace("[\]",'',$body);\r
10 \r
11 $mail->From     = "name@yourdomain.com";\r
12 $mail->FromName = "First Last";\r
13 \r
14 $mail->Subject = "PHPMailer Test Subject";\r
15 \r
16 $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test\r
17 \r
18 $mail->MsgHTML($body);\r
19 \r
20 $mail->AddAddress("whoto@otherdomain.com", "John Doe");\r
21 \r
22 if(!$mail->Send()) {\r
23   echo 'Failed to send mail';\r
24 } else {\r
25   echo 'Mail sent';\r
26 }\r
27 \r
28 ?>\r