Skip to content

Commit

Permalink
[SwiftMailer] Add the SendEmail Command (for the spool)
Browse files Browse the repository at this point in the history
  • Loading branch information
dator committed Feb 18, 2011
1 parent 76262b2 commit 9b16f1a
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions src/Symfony/Bundle/SwiftmailerBundle/Command/SendEmailCommand.php
@@ -0,0 +1,62 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Bundle\SwiftmailerBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputOption;

/**
* Warmup the cache.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Clément JOBEILI <clement.jobeili@gmail.com>
*/
class SendEmailCommand extends Command
{
/**
* @see Command
*/
protected function configure()
{
$this
->setName('swiftmailer:spool:send')
->setDescription('Send all emails from the spool')
->addOption('message-limit', 0, InputOption::VALUE_OPTIONAL, 'The maximum number of messages to send.')
->addOption('time-limit', 0, InputOption::VALUE_OPTIONAL, 'The time limit for sending messages (in seconds).')
->setHelp(<<<EOF
The <info>swiftmailer:spool:send</info> command send all emails from the spool.
EOF
)
;
}

/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$mailer = $this->container->get('mailer');
$transport = $mailer->getTransport();

if ("Swift_Transport_SpoolTransport" === get_class($transport)) {
$spool = $transport->getSpool();
$spool->setMessageLimit($input->getOption('message-limit'));
$spool->setTimeLimit($input->getOption('time-limit'));
$sent = $spool->flushQueue($this->container->get('swiftmailer.transport.real'));

$output->writeln(sprintf('sent %s emails', $sent));
}
}
}

0 comments on commit 9b16f1a

Please sign in to comment.