You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone ever added a bypass for the spooling?
So far I got this:
if($bypassSpool) {
$spool = $this->mailer->getTransport()->getSpool();
$transport = \Swift_MailTransport::newInstance();
$spool->flushQueue($transport);
}
but it isn't picking up the flushQueue() function from the swiftmailer-bundle. I don't know how to access that? :)
The text was updated successfully, but these errors were encountered:
Has anyone ever added a bypass for the spooling?
So far I got this:
if($bypassSpool) {
$spool = $this->mailer->getTransport()->getSpool();
$transport = \Swift_MailTransport::newInstance();
$spool->flushQueue($transport);
}
but it isn't picking up the flushQueue() function from the swiftmailer-bundle. I don't know how to access that? :)
The text was updated successfully, but these errors were encountered: