如何使用 swiftmailer-bundle 在 symfony 4 中设置多个邮件

How to set multiple mails in symfony 4 using swiftmailer-bundle

我正在使用 swiftmailer-bundle 从我的应用程序发送电子邮件

我已经在环境中添加了这个。

MAILER_URL=gmail://mailExample@mail.com:mypassword@localhost?encryption=tls&auth_mode=oauth

这是当我需要从控制器发送电子邮件时

$message = (new \Swift_Message($objet))
                ->setFrom('mailExample@mail.com','example')
                ->setTo(exemple2@mail.com)
                ->setBody("test")
                )

我的问题是如何添加另一个邮件?,我需要使用多个邮件

我可以在env.xml中添加两行MAILER_URL吗? ??

查看有关使用多个邮件程序的官方文档。

https://symfony.com/doc/current/reference/configuration/swiftmailer.html#using-multiple-mailers

swiftmailer:
    default_mailer: first_mailer
    mailers:
        first_mailer:
            url: '%env(MAILER_URL)%'
        second_mailer:
            url: '%env(SECOND_MAILER_URL)%'
// returns the first mailer
$container->get('swiftmailer.mailer.first_mailer');

// returns the second mailer
$container->get('swiftmailer.mailer.second_mailer');