1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
-
-
-
-
-
- class Swift_SendmailTransport extends Swift_Transport_SendmailTransport
- {
-
-
-
- public function __construct($command = '/usr/sbin/sendmail -bs')
- {
- call_user_func_array(
- array($this, 'Swift_Transport_SendmailTransport::__construct'),
- Swift_DependencyContainer::getInstance()
- ->createDependenciesFor('transport.sendmail')
- );
-
- $this->setCommand($command);
- }
-
-
-
- public static function newInstance($command = '/usr/sbin/sendmail -bs')
- {
- return new self($command);
- }
-
- }
|