web/lib/Zend/Mail/Transport/Smtp.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Mail
    16  * @package    Zend_Mail
    17  * @subpackage Transport
    17  * @subpackage Transport
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    20  * @version    $Id: Smtp.php 23424 2010-11-22 22:42:55Z bittarman $
    20  * @version    $Id: Smtp.php 24593 2012-01-05 20:35:02Z matthew $
    21  */
    21  */
    22 
    22 
    23 
    23 
    24 /**
    24 /**
    25  * @see Zend_Mime
    25  * @see Zend_Mime
    43  * Loads an instance of Zend_Mail_Protocol_Smtp and forwards smtp transactions
    43  * Loads an instance of Zend_Mail_Protocol_Smtp and forwards smtp transactions
    44  *
    44  *
    45  * @category   Zend
    45  * @category   Zend
    46  * @package    Zend_Mail
    46  * @package    Zend_Mail
    47  * @subpackage Transport
    47  * @subpackage Transport
    48  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    48  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    49  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    49  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    50  */
    50  */
    51 class Zend_Mail_Transport_Smtp extends Zend_Mail_Transport_Abstract
    51 class Zend_Mail_Transport_Smtp extends Zend_Mail_Transport_Abstract
    52 {
    52 {
    53     /**
    53     /**
   109      * Constructor.
   109      * Constructor.
   110      *
   110      *
   111      * @param  string $host OPTIONAL (Default: 127.0.0.1)
   111      * @param  string $host OPTIONAL (Default: 127.0.0.1)
   112      * @param  array|null $config OPTIONAL (Default: null)
   112      * @param  array|null $config OPTIONAL (Default: null)
   113      * @return void
   113      * @return void
   114      * 
   114      *
   115      * @todo Someone please make this compatible
   115      * @todo Someone please make this compatible
   116      *       with the SendMail transport class.
   116      *       with the SendMail transport class.
   117      */
   117      */
   118     public function __construct($host = '127.0.0.1', Array $config = array())
   118     public function __construct($host = '127.0.0.1', Array $config = array())
   119     {
   119     {