我已成功配置我的symfony webapp以使用SMTP发送电子邮件。但我发送的所有电子邮件都放在spool
目录中。
只有在发送错误时才会发生这种情况。这是对的吗?
但是如果我执行命令swiftmailer:spool:send --env=prod
,我的所有电子邮件都会正确发送。
为什么我的服务器没有立即发送电子邮件? 那是因为我修正了错误吗?有什么方法可以解决这个问题吗?
swiftmailer:
spool:
type: file
path: %kernel.root_dir%/spool
答案 0 :(得分:4)
如果有人通过消息队列(symfony / messenger)处理电子邮件,则首选使用内存假脱机。但是,仅在Kernel::terminate
事件中处理内存假脱机。长时间运行的控制台工作程序永远不会发生此事件。
此内核事件正在调用Symfony\Bundle\SwiftmailerBundle\EventListener\EmailSenderListener::onTerminate()
方法。您可以通过调度自己的事件并为其预订上述方法来手动调用此方法。
src/App/Email/Events.php
<?php
namespace App\Email;
class Events
{
public const UNSPOOL = 'unspool';
}
config/services.yml
services:
App\Email\AmqpHandler:
tags: [messenger.message_handler]
Symfony\Bundle\SwiftmailerBundle\EventListener\EmailSenderListener:
tags:
- name: kernel.event_listener
event: !php/const App\Email\Events::UNSPOOL
method: onTerminate
您的消息队列工作者
src/App/Email/AmqpHandler.php
<?php
namespace App\Email;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class AmqpHandler
{
/** @var EventDispatcherInterface */
private $eventDispatcher;
/** @var Swift_Mailer */
private $mailer;
public function __construct(EventDispatcherInterface $eventDispatcher, Swift_Mailer $mailer)
{
$this->eventDispatcher = $eventDispatcher;
$this->mailer = $mailer;
}
public function __invoke($emailMessage): void
{
//...
$message = (new Swift_Message($subject))
->setFrom($emailMessage->from)
->setTo($emailMessage->to)
->setBody($emailMessage->body, 'text/html');
$successfulRecipientsCount = $this->mailer->send($message, $failedRecipients);
if ($successfulRecipientsCount < 1 || count($failedRecipients) > 0) {
throw new DeliveryFailureException($message);
}
$this->eventDispatcher->dispatch(Events::UNSPOOL);
}
}
您可以阅读有关 symfony / messenger here。
答案 1 :(得分:2)
您可以强制冲洗线轴。 例如:
$mailer = $this->container->get('mailer');
$mailer->send($message);
$spool = $mailer->getTransport()->getSpool();
$transport = $this->container->get('swiftmailer.transport.real');
if ($spool and $transport) $spool->flushQueue($transport);
还要检查config.yml中的假脱机配置。
如果你有:
swiftmailer:
....
spool: { type: memory }
邮件在内核终止事件上发送(所以在页面末尾)
答案 2 :(得分:2)
只需将命令swiftmailer:spool:send
添加到crontab
即可。 Symfony documentation上的步骤不明确。