8000 šŸ› [Mailer] Fix mailjet scheme bug Ā· jeremyFreeAgent/symfony@6f357a6 Ā· GitHub
[go: up one dir, main page]

Skip to content

Commit 6f357a6

Browse files
committed
šŸ› [Mailer] Fix mailjet scheme bug
1 parent a2d360b commit 6f357a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ā€Žsrc/Symfony/Component/Mailer/Bridge/Mailjet/Transport/MailjetTransportFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function create(Dsn $dsn): TransportInterface
2525
$password = $this->getPassword($dsn);
2626
$host = 'default' === $dsn->getHost() ? null : $dsn->getHost();
2727

28-
if ('maijlet+api' === $scheme) {
28+
if ('mailjet+api' === $scheme) {
2929
return (new MailjetApiTransport($user, $password, $this->client, $this->dispatcher, $this->logger))->setHost($host);
3030
}
3131

0 commit comments

Comments
Ā (0)
0