mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
fix: respect SMTP encryption setting for email notifications
This commit is contained in:
parent
d2de0307bd
commit
a626123623
1 changed files with 2 additions and 2 deletions
|
|
@ -80,8 +80,8 @@ class EmailChannel
|
|||
} elseif ($isSmtpEnabled) {
|
||||
$encryption = match (strtolower($settings->smtp_encryption)) {
|
||||
'starttls' => null,
|
||||
'tls' => 'tls',
|
||||
'none' => null,
|
||||
'tls' => true,
|
||||
'none' => false,
|
||||
default => null,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue