Skip to content

Commit

Permalink
fix: sendmail driver fails
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Jan 24, 2025
1 parent 670aa2e commit 3541fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/core/src/Mail/SendmailDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public function canSend(): bool

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

0 comments on commit 3541fc4

Please sign in to comment.