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.
11 //@require 'Swift/Transport/MailTransport.php';
12 //@require 'Swift/DependencyContainer.php';
15 * Sends Messages using the mail() function.
17 * @subpackage Transport
18 * @author Chris Corbyn
20 class Swift_MailTransport
extends Swift_Transport_MailTransport
24 * Create a new MailTransport, optionally specifying $extraParams.
25 * @param string $extraParams
27 public function __construct($extraParams = '-f%s')
30 array($this, 'Swift_Transport_MailTransport::__construct'),
31 Swift_DependencyContainer
::getInstance()
32 ->createDependenciesFor('transport.mail')
35 $this->setExtraParams($extraParams);
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);