This commit is contained in:
sharkcreep87 2026-02-28 15:36:01 +00:00 committed by GitHub
commit 3f20c7b354
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
};