Swift_MailTransport::__construct PHP 메소드

__construct() 공개 메소드

Create a new MailTransport, optionally specifying $extraParams.
public __construct ( string $extraParams = '-f%s' )
$extraParams string
    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);
    }
Swift_MailTransport