From e5ad1b45bd7249de76d1c66bb4d9100ac825b4c9 Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 3 Feb 2020 20:49:58 +0100 Subject: [PATCH] More info about smtp options for Microsoft Outlook --- config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.php b/config.php index b4dab1b0..bf4dc36f 100644 --- a/config.php +++ b/config.php @@ -114,13 +114,13 @@ $config = array( 'plain' => ""/*"--\nMy Server,\nhttp://www.myserver.com"*/, 'html' => ''/*'
My Server,\nmyserver.com'*/ ), - 'smtp_enabled' => false, // send by smtp or mail function (set false if use mail function) - 'smtp_host' => '', // mail host - 'smtp_port' => 25, // 25 (default) / 465 (ssl, e.g. gmail) + 'smtp_enabled' => false, // send by smtp or mail function (set false if use mail function, set to true if you use GMail or Microsoft Outlook) + 'smtp_host' => '', // mail host. smtp.gmail.com for GMail / smtp-mail.outlook.com for Microsoft Outlook + 'smtp_port' => 25, // 25 (default) / 465 (ssl, GMail) / 587 (tls, Microsoft Outlook) 'smtp_auth' => true, // need authorization? - 'smtp_user' => 'admin@example.org', + 'smtp_user' => 'admin@example.org', // here your email username 'smtp_pass' => '', - 'smtp_secure' => '', // What kind of encryption to use on the SMTP connection. Options: '', 'ssl' or 'tls', use 'ssl' for gmail + 'smtp_secure' => '', // What kind of encryption to use on the SMTP connection. Options: '', 'ssl' (GMail) or 'tls' (Microsoft Outlook) 'smtp_debug' => false, // set true to debug (you will see more info in error.log) // reCAPTCHA (prevent spam bots)