Skip to content

Commit 069d534

Browse files
bug symfony#52984 [FrameworkBundle] fix registering the Azure transport factory service (xabbuh)
This PR was merged into the 7.1 branch. Discussion ---------- [FrameworkBundle] fix registering the Azure transport factory service | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- 28d0b3f fix registering the Azure transport factory service
2 parents 7ba7a64 + 28d0b3f commit 069d534

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/mailer_transports.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
1313

1414
use Symfony\Component\Mailer\Bridge\Amazon\Transport\SesTransportFactory;
15+
use Symfony\Component\Mailer\Bridge\Azure\Transport\AzureTransportFactory;
1516
use Symfony\Component\Mailer\Bridge\Brevo\Transport\BrevoTransportFactory;
1617
use Symfony\Component\Mailer\Bridge\Google\Transport\GmailTransportFactory;
1718
use Symfony\Component\Mailer\Bridge\Infobip\Transport\InfobipTransportFactory;
@@ -44,6 +45,10 @@
4445
->parent('mailer.transport_factory.abstract')
4546
->tag('mailer.transport_factory')
4647

48+
->set('mailer.transport_factory.azure', AzureTransportFactory::class)
49+
->parent('mailer.transport_factory.abstract')
50+
->tag('mailer.transport_factory')
51+
4752
->set('mailer.transport_factory.brevo', BrevoTransportFactory::class)
4853
->parent('mailer.transport_factory.abstract')
4954
->tag('mailer.transport_factory')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
vendor/
22
composer.lock
3+
phpunit.xml

0 commit comments

Comments
 (0)