X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fthird_party%2Fphp_mailer%2Fexamples%2Fpop3_before_smtp_test.php;fp=inc%2Fclasses%2Fthird_party%2Fphp_mailer%2Fexamples%2Fpop3_before_smtp_test.php;h=0000000000000000000000000000000000000000;hb=6be6431d3160e268c6e0bce8a8905056d007a6bb;hp=794b2a2674133e25d4ee9d9525446e2431d1eeee;hpb=da60484dec98507d52d2feeb9e4e798adb9b49a8;p=shipsimu.git diff --git a/inc/classes/third_party/php_mailer/examples/pop3_before_smtp_test.php b/inc/classes/third_party/php_mailer/examples/pop3_before_smtp_test.php deleted file mode 100644 index 794b2a2..0000000 --- a/inc/classes/third_party/php_mailer/examples/pop3_before_smtp_test.php +++ /dev/null @@ -1,39 +0,0 @@ - - -POP before SMTP Test - - - - -
-Authorise('pop3.example.com', 110, 30, 'mailer', 'password', 1);
-
-  $mail = new PHPMailer();
-
-  $mail->IsSMTP();
-  $mail->SMTPDebug = 2;
-  $mail->IsHTML(false);
-
-  $mail->Host     = 'relay.example.com';
-
-  $mail->From     = 'mailer@example.com';
-  $mail->FromName = 'Example Mailer';
-
-  $mail->Subject  =  'My subject';
-  $mail->Body     =  'Hello world';
-  $mail->AddAddress('name@anydomain.com', 'First Last');
-
-  if (!$mail->Send())
-  {
-    echo $mail->ErrorInfo;
-  }
-?>
-
- - -