This commit is contained in:
sharkcreep87 2026-03-10 23:10:31 +01:00 committed by GitHub
commit 8331134f4e
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,
};