Skip to content

Commit 76d8ea5

Browse files
authored
fix: sendmail driver fails (#4168)
1 parent cf7ef48 commit 76d8ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/core/src/Mail/SendmailDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ public function canSend(): bool
3535

3636
public function buildTransport(SettingsRepositoryInterface $settings): TransportInterface
3737
{
38-
return (new SendmailTransportFactory())->create(new Dsn('', 'sendmail'));
38+
return (new SendmailTransportFactory())->create(new Dsn('sendmail', 'default'));
3939
}
4040
}

0 commit comments

Comments
 (0)