win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / phpmailer / examples / test1.php
index 063c2c7f9efe4d2da76217da71272432cdb2e29f..809382894fa9ef5b43c7f3a73b6cd39c961b92ed 100644 (file)
@@ -1,28 +1,28 @@
-<?php\r
-\r
-include_once('../class.phpmailer.php');\r
-\r
-$mail    = new PHPMailer();\r
-\r
-$body    = $mail->getFile('contents.html');\r
-\r
-$body    = eregi_replace("[\]",'',$body);\r
-\r
-$mail->From     = "name@yourdomain.com";\r
-$mail->FromName = "First Last";\r
-\r
-$mail->Subject = "PHPMailer Test Subject";\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
-if(!$mail->Send()) {\r
-  echo 'Failed to send mail';\r
-} else {\r
-  echo 'Mail sent';\r
-}\r
-\r
-?>\r
+<?php
+
+include_once('../class.phpmailer.php');
+
+$mail    = new PHPMailer();
+
+$body    = $mail->getFile('contents.html');
+
+$body    = eregi_replace("[\]",'',$body);
+
+$mail->From     = "name@yourdomain.com";
+$mail->FromName = "First Last";
+
+$mail->Subject = "PHPMailer Test Subject";
+
+$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");
+
+if(!$mail->Send()) {
+  echo 'Failed to send mail';
+} else {
+  echo 'Mail sent';
+}
+
+?>