Skip to content

Commit e31b078

Browse files
bug #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 ------- 28d0b3f8eb fix registering the Azure transport factory service
2 parents 11066e4 + ec947a0 commit e31b078

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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')

0 commit comments

Comments
 (0)