23
23
use Symfony \Component \Mailer \Bridge \Mailjet \Transport \MailjetTransportFactory ;
24
24
use Symfony \Component \Mailer \Bridge \OhMySmtp \Transport \OhMySmtpTransportFactory ;
25
25
use Symfony \Component \Mailer \Bridge \Postmark \Transport \PostmarkTransportFactory ;
26
+ use Symfony \Component \Mailer \Bridge \Scaleway \Transport \ScalewayTransportFactory ;
26
27
use Symfony \Component \Mailer \Bridge \Sendgrid \Transport \SendgridTransportFactory ;
27
28
use Symfony \Component \Mailer \Bridge \Sendinblue \Transport \SendinblueTransportFactory ;
28
29
use Symfony \Component \Mailer \Exception \UnsupportedSchemeException ;
@@ -46,6 +47,7 @@ public static function setUpBeforeClass(): void
46
47
MandrillTransportFactory::class => false ,
47
48
OhMySmtpTransportFactory::class => false ,
48
49
PostmarkTransportFactory::class => false ,
50
+ ScalewayTransportFactory::class => false ,
49
51
SendgridTransportFactory::class => false ,
50
52
SendinblueTransportFactory::class => false ,
51
53
SesTransportFactory::class => false ,
@@ -76,6 +78,7 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
76
78
yield ['mandrill ' , 'symfony/mailchimp-mailer ' ];
77
79
yield ['ohmysmtp ' , 'symfony/oh-my-smtp-mailer ' ];
78
80
yield ['postmark ' , 'symfony/postmark-mailer ' ];
81
+ yield ['scaleway ' , 'symfony/scaleway-mailer ' ];
79
82
yield ['sendgrid ' , 'symfony/sendgrid-mailer ' ];
80
83
yield ['sendinblue ' , 'symfony/sendinblue-mailer ' ];
81
84
yield ['ses ' , 'symfony/amazon-mailer ' ];
0 commit comments