Skip to content

Commit 936eaf9

Browse files
committed
[Mailer] Remove the Sendinblue bridge
1 parent c5b55a8 commit 936eaf9

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ class UnsupportedSchemeException extends LogicException
5656
'class' => Bridge\Sendgrid\Transport\SendgridTransportFactory::class,
5757
'package' => 'symfony/sendgrid-mailer',
5858
],
59-
'sendinblue' => [
60-
'class' => Bridge\Sendinblue\Transport\SendinblueTransportFactory::class,
61-
'package' => 'symfony/sendinblue-mailer',
62-
],
6359
'ses' => [
6460
'class' => Bridge\Amazon\Transport\SesTransportFactory::class,
6561
'package' => 'symfony/amazon-mailer',

Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
use Symfony\Component\Mailer\Bridge\Mailjet\Transport\MailjetTransportFactory;
2424
use Symfony\Component\Mailer\Bridge\Postmark\Transport\PostmarkTransportFactory;
2525
use Symfony\Component\Mailer\Bridge\Sendgrid\Transport\SendgridTransportFactory;
26-
use Symfony\Component\Mailer\Bridge\Sendinblue\Transport\SendinblueTransportFactory;
2726
use Symfony\Component\Mailer\Exception\UnsupportedSchemeException;
2827
use Symfony\Component\Mailer\Transport\Dsn;
2928

@@ -45,7 +44,6 @@ public static function setUpBeforeClass(): void
4544
MandrillTransportFactory::class => false,
4645
PostmarkTransportFactory::class => false,
4746
SendgridTransportFactory::class => false,
48-
SendinblueTransportFactory::class => false,
4947
SesTransportFactory::class => false,
5048
]);
5149
}
@@ -74,7 +72,6 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
7472
yield ['mandrill', 'symfony/mailchimp-mailer'];
7573
yield ['postmark', 'symfony/postmark-mailer'];
7674
yield ['sendgrid', 'symfony/sendgrid-mailer'];
77-
yield ['sendinblue', 'symfony/sendinblue-mailer'];
7875
yield ['ses', 'symfony/amazon-mailer'];
7976
}
8077

Transport.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
use Symfony\Component\Mailer\Bridge\Mailjet\Transport\MailjetTransportFactory;
2323
use Symfony\Component\Mailer\Bridge\Postmark\Transport\PostmarkTransportFactory;
2424
use Symfony\Component\Mailer\Bridge\Sendgrid\Transport\SendgridTransportFactory;
25-
use Symfony\Component\Mailer\Bridge\Sendinblue\Transport\SendinblueTransportFactory;
2625
use Symfony\Component\Mailer\Exception\InvalidArgumentException;
2726
use Symfony\Component\Mailer\Exception\UnsupportedSchemeException;
2827
use Symfony\Component\Mailer\Transport\Dsn;
@@ -52,7 +51,6 @@ final class Transport
5251
MandrillTransportFactory::class,
5352
PostmarkTransportFactory::class,
5453
SendgridTransportFactory::class,
55-
SendinblueTransportFactory::class,
5654
SesTransportFactory::class,
5755
];
5856

0 commit comments

Comments
 (0)