This commit is contained in:
sharkcreep87 2026-03-09 19:38:04 +01:00 committed by GitHub
commit b72e751123
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,
};