Mailjet\Client::getApiUrl PHP 메소드

getApiUrl() 개인적인 메소드

Build the base API url depending on wether user need a secure connection or not
private getApiUrl ( ) : string
리턴 string the API url;
    private function getApiUrl()
    {
        $h = $this->secure ? 'https' : 'http';
        return $h . '://api.mailjet.com/' . $this->version;
    }