From 213bdd6de4617e695af57021da051958e119d409 Mon Sep 17 00:00:00 2001 From: michaelkonecny Date: Wed, 9 Apr 2014 18:29:41 +0200 Subject: [PATCH] host declaration was there twice --- examples/mailing_list.phps | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/mailing_list.phps b/examples/mailing_list.phps index 8d0fc5fcd..b130a9278 100644 --- a/examples/mailing_list.phps +++ b/examples/mailing_list.phps @@ -14,7 +14,6 @@ $mail->isSMTP(); $mail->Host = 'smtp.example.com'; $mail->SMTPAuth = true; $mail->SMTPKeepAlive = true; // SMTP connection will not close after each email sent, reduces SMTP overhead -$mail->Host = 'mail.example.com'; $mail->Port = 25; $mail->Username = 'yourname@example.com'; $mail->Password = 'yourpassword';