Avail feature updated
[ninja.git] / application / vendor / swiftmailer / classes / Swift / MailTransport.php
blobafe29c6ff174654c4c106d750cc27dcd8f993478
1 <?php
3 /*
4 * This file is part of SwiftMailer.
5 * (c) 2004-2009 Chris Corbyn
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
11 //@require 'Swift/Transport/MailTransport.php';
12 //@require 'Swift/DependencyContainer.php';
14 /**
15 * Sends Messages using the mail() function.
16 * @package Swift
17 * @subpackage Transport
18 * @author Chris Corbyn
20 class Swift_MailTransport extends Swift_Transport_MailTransport
23 /**
24 * Create a new MailTransport, optionally specifying $extraParams.
25 * @param string $extraParams
27 public function __construct($extraParams = '-f%s')
29 call_user_func_array(
30 array($this, 'Swift_Transport_MailTransport::__construct'),
31 Swift_DependencyContainer::getInstance()
32 ->createDependenciesFor('transport.mail')
35 $this->setExtraParams($extraParams);
38 /**
39 * Create a new MailTransport instance.
40 * @param string $extraParams To be passed to mail()
41 * @return Swift_MailTransport
43 public static function newInstance($extraParams = '-f%s')
45 return new self($extraParams);