コマンドを使用せずにswiftmailerからスプールを送信するにはどうすればよいですか?
php app/console swiftmailer:spool:send --env=prod
サーバー管理者がこれをScheduleに追加できるように、これを何らかの方法でphpファイルに入れる必要があります。
コマンドを使用せずにswiftmailerからスプールを送信するにはどうすればよいですか?
php app/console swiftmailer:spool:send --env=prod
サーバー管理者がこれをScheduleに追加できるように、これを何らかの方法でphpファイルに入れる必要があります。
これは、コントローラーから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());
コマンドと同じようにします。コマンド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種類のスプールを検索します。スプールがこれらの種類のいずれでもない場合は、すべてのコードが必要ない場合があります。