blob: 5371bf4cc581ee7f4847363c26e60d88af2003b0 [file] [log] [blame]
<?php
/**
* File containing the ezcMailTransport class
*
* @package Mail
* @version //autogen//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Interface for classes that implement a mail transport.
*
* Subclasses must implement the send() method.
*
* @package Mail
* @version //autogen//
*/
interface ezcMailTransport
{
/**
* Sends the contents of $mail.
*
* @param ezcMail $mail
*/
public function send( ezcMail $mail );
}
?>