Skip to content

Instantly share code, notes, and snippets.

@allfreelancers
Forked from arnaud-lb/flush.php
Created May 23, 2018 08:57
Show Gist options
  • Save allfreelancers/f024feb51bd155bb49a368c1501387b0 to your computer and use it in GitHub Desktop.
Save allfreelancers/f024feb51bd155bb49a368c1501387b0 to your computer and use it in GitHub Desktop.
flush email queue from symfony command
<?php
protected function flushQueue()
{
$container = $this->getContainer();
$transport = $container->get('mailer')->getTransport();
$spool = $transport->getSpool();
$spool->flushQueue($container->get('swiftmailer.transport.real'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment