diff --git a/system/settings.php b/system/settings.php index 0d447c0f..5f899961 100644 --- a/system/settings.php +++ b/system/settings.php @@ -509,7 +509,7 @@ Sent by MyAAC,
'smtp_port' => [ 'name' => 'SMTP Host', 'type' => 'number', - 'desc' => '25 (default) / 465 (ssl, GMail) / 587 (tls, Microsoft Outlook)', + 'desc' => '25 (default) / 587 (tls - GMail, Microsoft Outlook)', 'default' => 25, 'show_if' => [ 'mail_enabled', '=', 'true' @@ -536,7 +536,8 @@ Sent by MyAAC,
'smtp_pass' => [ 'name' => 'SMTP Password', 'type' => 'password', - 'desc' => 'Here your email password to authenticate with SMTP', + 'desc' => 'Here your email password to authenticate with SMTP.' . PHP_EOL + . 'For GMail use generated App password - https://myaccount.google.com/apppasswords.', 'default' => '', 'show_if' => [ 'mail_enabled', '=', 'true' @@ -546,7 +547,8 @@ Sent by MyAAC,
'name' => 'SMTP Security', 'type' => 'options', 'options' => ['None', 'SSL', 'TLS'], - 'desc' => 'What kind of encryption to use on the SMTP connection', + 'desc' => 'What kind of encryption to use on the SMTP connection.' . PHP_EOL + . '(Gmail, Outlook - tls).', 'default' => 0, 'show_if' => [ 'mail_enabled', '=', 'true'