How to send spool from swiftmailer without using command

前端 未结 2 967
情话喂你
情话喂你 2021-02-15 14:55

How to send spool from swiftmailer without using command?

php app/console swiftmailer:spool:send --env=prod

I need to put this somehow into php file

相关标签:
2条回答
  • 2021-02-15 15:37

    This can also be achieved by How can I run symfony 2 run command from controller , so you don't duplicate code. Worked for me.

    services.yml:

    services:
        swiftmailer.command.spool_send:
            class: Symfony\Bundle\SwiftmailerBundle\Command\SendEmailCommand
            calls:
                - [ setContainer, ["@service_container"] ]
    

    Controller code (simplified):

    $this->get('swiftmailer.command.spool_send')->run(new ArgvInput(array()), new ConsoleOutput());
    
    0 讨论(0)
  • 2021-02-15 15:39

    Just do the same that the command does. From the command Execute() function:

        $mailer     = $this->getContainer()->get('mailer');
        $transport  = $mailer->getTransport();
    
        if ($transport instanceof \Swift_Transport_SpoolTransport) {
            $spool = $transport->getSpool();
            if ($spool instanceof \Swift_ConfigurableSpool) {
                $spool->setMessageLimit($input->getOption('message-limit'));
                $spool->setTimeLimit($input->getOption('time-limit'));
            }
            if ($spool instanceof \Swift_FileSpool) {
                if (null !== $input->getOption('recover-timeout')) {
                    $spool->recover($input->getOption('recover-timeout'));
                } else {
                    $spool->recover();
                }
            }
            $sent = $spool->flushQueue($this->getContainer()->get('swiftmailer.transport.real'));
    
            $output->writeln(sprintf('sent %s emails', $sent));
        }
    

    You need to remove the $output->... line (maybe you can do something useful with the $sent variable). Also, this code looks for two kinds of spool, maybe you don´t need all the code if your spool is not one of these kinds.

    0 讨论(0)
提交回复
热议问题