1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
-
-
-
-
-
- class Swift_MailTransport extends Swift_Transport_MailTransport
- {
-
-
-
- public function __construct($extraParams = '-f%s')
- {
- call_user_func_array(
- array($this, 'Swift_Transport_MailTransport::__construct'),
- Swift_DependencyContainer::getInstance()
- ->createDependenciesFor('transport.mail')
- );
-
- $this->setExtraParams($extraParams);
- }
-
-
-
- public static function newInstance($extraParams = '-f%s')
- {
- return new self($extraParams);
- }
-
- }
|