23 lines
485 B
PHP
23 lines
485 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyright (C) 2013 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailjet;
|
|
|
|
class Config
|
|
{
|
|
public const WRAPPER_VERSION = 'v2.0.0';
|
|
public const USER_AGENT = 'mailjet-apiv3-php/';
|
|
public const MAIN_VERSION = 'v3';
|
|
public const MAIN_URL = 'api.mailjet.com';
|
|
public const SECURED = true;
|
|
public const SMS_VERSION = 'v4';
|
|
}
|