TYPO3  7.6
Transport.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of SwiftMailer.
5  * (c) 2004-2009 Chris Corbyn
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_Transport
17 {
23  public function isStarted();
24 
28  public function start();
29 
33  public function stop();
34 
46  public function send(Swift_Mime_Message $message, &$failedRecipients = null);
47 
53  public function registerPlugin(Swift_Events_EventListener $plugin);
54 }