File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -56,10 +56,6 @@ class UnsupportedSchemeException extends LogicException
56
56
'class ' => Bridge \Sendgrid \Transport \SendgridTransportFactory::class,
57
57
'package ' => 'symfony/sendgrid-mailer ' ,
58
58
],
59
- 'sendinblue ' => [
60
- 'class ' => Bridge \Sendinblue \Transport \SendinblueTransportFactory::class,
61
- 'package ' => 'symfony/sendinblue-mailer ' ,
62
- ],
63
59
'ses ' => [
64
60
'class ' => Bridge \Amazon \Transport \SesTransportFactory::class,
65
61
'package ' => 'symfony/amazon-mailer ' ,
Original file line number Diff line number Diff line change 23
23
use Symfony \Component \Mailer \Bridge \Mailjet \Transport \MailjetTransportFactory ;
24
24
use Symfony \Component \Mailer \Bridge \Postmark \Transport \PostmarkTransportFactory ;
25
25
use Symfony \Component \Mailer \Bridge \Sendgrid \Transport \SendgridTransportFactory ;
26
- use Symfony \Component \Mailer \Bridge \Sendinblue \Transport \SendinblueTransportFactory ;
27
26
use Symfony \Component \Mailer \Exception \UnsupportedSchemeException ;
28
27
use Symfony \Component \Mailer \Transport \Dsn ;
29
28
@@ -45,7 +44,6 @@ public static function setUpBeforeClass(): void
45
44
MandrillTransportFactory::class => false ,
46
45
PostmarkTransportFactory::class => false ,
47
46
SendgridTransportFactory::class => false ,
48
- SendinblueTransportFactory::class => false ,
49
47
SesTransportFactory::class => false ,
50
48
]);
51
49
}
@@ -74,7 +72,6 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
74
72
yield ['mandrill ' , 'symfony/mailchimp-mailer ' ];
75
73
yield ['postmark ' , 'symfony/postmark-mailer ' ];
76
74
yield ['sendgrid ' , 'symfony/sendgrid-mailer ' ];
77
- yield ['sendinblue ' , 'symfony/sendinblue-mailer ' ];
78
75
yield ['ses ' , 'symfony/amazon-mailer ' ];
79
76
}
80
77
Original file line number Diff line number Diff line change 22
22
use Symfony \Component \Mailer \Bridge \Mailjet \Transport \MailjetTransportFactory ;
23
23
use Symfony \Component \Mailer \Bridge \Postmark \Transport \PostmarkTransportFactory ;
24
24
use Symfony \Component \Mailer \Bridge \Sendgrid \Transport \SendgridTransportFactory ;
25
- use Symfony \Component \Mailer \Bridge \Sendinblue \Transport \SendinblueTransportFactory ;
26
25
use Symfony \Component \Mailer \Exception \InvalidArgumentException ;
27
26
use Symfony \Component \Mailer \Exception \UnsupportedSchemeException ;
28
27
use Symfony \Component \Mailer \Transport \Dsn ;
@@ -52,7 +51,6 @@ final class Transport
52
51
MandrillTransportFactory::class,
53
52
PostmarkTransportFactory::class,
54
53
SendgridTransportFactory::class,
55
- SendinblueTransportFactory::class,
56
54
SesTransportFactory::class,
57
55
];
58
56
You can’t perform that action at this time.
0 commit comments