We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f1731 commit 8ae1a65Copy full SHA for 8ae1a65
src/CoreBundle/Decorator/MailTransportDecorator.php
@@ -26,6 +26,10 @@ public function fromStrings(#[SensitiveParameter] array $dsns): Transports
26
{
27
$dsn = $this->settingsManager->getSetting('mail.mailer_dsn');
28
29
+ if (empty($dsn)) {
30
+ $dsn = 'null://null';
31
+ }
32
+
33
return new Transports([
34
$this->inner->fromString($dsn),
35
]);
0 commit comments