svn:eol-style set to 'native'
[mailer.git] / inc / phpmailer / examples / test_smtp.php
index 189f8daa185eff72bf533b18e8ae1d43b139f747..be4b484fec5260fee7f0d5760b8e2785f4469476 100644 (file)
@@ -1,33 +1,33 @@
-<?php\r
-\r
-include_once('class.phpmailer.php');\r
-//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded\r
-\r
-$mail             = new PHPMailer();\r
-\r
-$body             = $mail->getFile('contents.html');\r
-$body             = eregi_replace("[\]",'',$body);\r
-\r
-$mail->IsSMTP(); // telling the class to use SMTP\r
-$mail->Host       = "mail.yourdomain.com"; // SMTP server\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
+
+include_once('class.phpmailer.php');
+//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
+
+$mail             = new PHPMailer();
+
+$body             = $mail->getFile('contents.html');
+$body             = eregi_replace("[\]",'',$body);
+
+$mail->IsSMTP(); // telling the class to use SMTP
+$mail->Host       = "mail.yourdomain.com"; // SMTP server
+
+$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!";
+}
+
+?>