Adjust mailer settings to latest gmail

This commit is contained in:
slawkens 2025-01-18 16:18:47 +01:00
parent e85ce193be
commit c5d5bb8067

View File

@ -509,7 +509,7 @@ Sent by MyAAC,<br/>
'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,<br/>
'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,<br/>
'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'