svn:eol-style set to 'native'
[mailer.git] / inc / phpmailer / examples / test_mail.php
index e87056e91750c1bf7895a2fc9b39c12e502350ca..6e0ac2fd940a59f9c590c15fbc35b42bf215571c 100644 (file)
@@ -1,29 +1,29 @@
-<?php\r
-\r
-include_once('../class.phpmailer.php');\r
-\r
-$mail             = new PHPMailer(); // defaults to using php "mail()"\r
-\r
-$body             = $mail->getFile('contents.html');\r
-$body             = eregi_replace("[\]",'',$body);\r
-\r
-$mail->From       = "name@yourdomain.com";\r
-$mail->FromName   = "First Last";\r
-\r
-$mail->Subject    = "PHPMailer Test Subject via mail()";\r
-\r
-$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test\r
-\r
-$mail->MsgHTML($body);\r
-\r
-$mail->AddAddress("whoto@otherdomain.com", "John Doe");\r
-\r
-$mail->AddAttachment("images/phpmailer.gif");             // attachment\r
-\r
-if(!$mail->Send()) {\r
-  echo "Mailer Error: " . $mail->ErrorInfo;\r
-} else {\r
-  echo "Message sent!";\r
-}\r
-\r
-?>\r
+<?php
+
+include_once('../class.phpmailer.php');
+
+$mail             = new PHPMailer(); // defaults to using php "mail()"
+
+$body             = $mail->getFile('contents.html');
+$body             = eregi_replace("[\]",'',$body);
+
+$mail->From       = "name@yourdomain.com";
+$mail->FromName   = "First Last";
+
+$mail->Subject    = "PHPMailer Test Subject via mail()";
+
+$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
+
+$mail->MsgHTML($body);
+
+$mail->AddAddress("whoto@otherdomain.com", "John Doe");
+
+$mail->AddAttachment("images/phpmailer.gif");             // attachment
+
+if(!$mail->Send()) {
+  echo "Mailer Error: " . $mail->ErrorInfo;
+} else {
+  echo "Message sent!";
+}
+
+?>