XOOPS RMCommon Utilities  2.1.8.91RC
 All Classes Namespaces Files Functions Variables
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 
11 //@require 'Swift/Mime/Message.php';
12 //@require 'Swift/Events/EventListener.php';
13 
21 interface Swift_Transport
22 {
23 
29  public function isStarted();
30 
34  public function start();
35 
39  public function stop();
40 
51  public function send(Swift_Mime_Message $message, &$failedRecipients = null);
52 
58  public function registerPlugin(Swift_Events_EventListener $plugin);
59 
60 }