Will be upgraded to PHP5/6 version
[core.git] / inc / classes / third_party / php_mailer / examples / test_mail.php
diff --git a/inc/classes/third_party/php_mailer/examples/test_mail.php b/inc/classes/third_party/php_mailer/examples/test_mail.php
deleted file mode 100644 (file)
index e87056e..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?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