8

コマンドを使用せずにswiftmailerからスプールを送信するにはどうすればよいですか?

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

サーバー管理者がこれをScheduleに追加できるように、これを何らかの方法でphpファイルに入れる必要があります。

4

2 に答える 2

22

これは、コントローラーからsymfony 2 runコマンドを実行する方法によっても達成できるため、コードを複製しないでください。私のために働いた。

services.yml:

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

コントローラコード(簡略化):

$this->get('swiftmailer.command.spool_send')->run(new ArgvInput(array()), new ConsoleOutput());
于 2013-01-05T14:08:37.203 に答える
14

コマンドと同じようにします。コマンドExecute()関数から:

    $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));
    }

$ output-> ...行を削除する必要があります($ send変数を使用して何か便利なことができるかもしれません)。また、このコードは2種類のスプールを検索します。スプールがこれらの種類のいずれでもない場合は、すべてのコードが必要ない場合があります。

于 2012-09-11T12:29:51.343 に答える