This commit is contained in:
sharkcreep87 2026-03-04 10:45:10 +01:00 committed by GitHub
commit 1704fa28df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,8 +80,8 @@ class EmailChannel
} elseif ($isSmtpEnabled) { } elseif ($isSmtpEnabled) {
$encryption = match (strtolower($settings->smtp_encryption)) { $encryption = match (strtolower($settings->smtp_encryption)) {
'starttls' => null, 'starttls' => null,
'tls' => 'tls', 'tls' => true,
'none' => null, 'none' => false,
default => null, default => null,
}; };