Postmark\PostmarkAdminClient::__construct PHP Метод

__construct() публичный Метод

Create a new PostmarkAdminClient.
public __construct ( string $accountToken, integer $timeout = 30 )
$accountToken string The Account Token used to access the Admin API. This token is NOT the same as a Server Token. You can get your account token from this page: https://postmarkapp.com/account/edit
$timeout integer The timeout, in seconds, that API calls should wait before throwing an exception.
    function __construct($accountToken, $timeout = 30)
    {
        parent::__construct($accountToken, "X-Postmark-Account-Token", $timeout);
    }