-<?php\r
-\r
-//error_reporting(E_ALL);\r
-error_reporting(E_STRICT);\r
-\r
-\r
-date_default_timezone_set('America/Toronto');\r
-//date_default_timezone_set(date_default_timezone_get());\r
-\r
-include_once('class.phpmailer.php');\r
-\r
-$mail = new PHPMailer();\r
-$body = $mail->getFile('contents.html');\r
-$body = eregi_replace("[\]",'',$body);\r
-\r
-$mail->IsSendmail(); // telling the class to use SendMail transport\r
-\r
-$mail->From = "name@yourdomain.com";\r
-$mail->FromName = "First Last";\r
-\r
-$mail->Subject = "PHPMailer Test Subject via smtp";\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
+
+//error_reporting(E_ALL);
+error_reporting(E_STRICT);
+
+
+date_default_timezone_set('America/Toronto');
+//date_default_timezone_set(date_default_timezone_get());
+
+include_once('class.phpmailer.php');
+
+$mail = new PHPMailer();
+$body = $mail->getFile('contents.html');
+$body = eregi_replace("[\]",'',$body);
+
+$mail->IsSendmail(); // telling the class to use SendMail transport
+
+$mail->From = "name@yourdomain.com";
+$mail->FromName = "First Last";
+
+$mail->Subject = "PHPMailer Test Subject via smtp";
+
+$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!";
+}
+
+?>