在我的应用程序中,我们会立即发送通知电子邮件,例如,当您的注册表或需要通过电子邮件确认某些信息时.
但是我们还需要为数百名用户发送个性化的电子邮件(只有一个文本不同),但我不知道如何在同一个项目中将Symfony2 spool email与没有假脱机电子邮件相结合.
发送电子邮件时有类似参数的信息表明这一点?
像$email-> send(‘no-spool’);
最佳答案 我找到了解决方案并发布在这里:
How to define an additional mailer service to use the spool and send instant emails in Symfony2
简而言之:
instant_mailer:
class: %swiftmailer.class%
arguments: ["@?swiftmailer.transport.real"]