TYPO3  7.6
Spool.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of SwiftMailer.
5  * (c) 2009 Fabien Potencier <fabien.potencier@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10 
16 interface Swift_Spool
17 {
21  public function start();
22 
26  public function stop();
27 
33  public function isStarted();
34 
42  public function queueMessage(Swift_Mime_Message $message);
43 
52  public function flushQueue(Swift_Transport $transport, &$failedRecipients = null);
53 }