mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
15 lines
609 B
PHP
15 lines
609 B
PHP
<?PHP
|
|
|
|
const API_USER = "api";
|
|
const SDK_VERSION = "0.1";
|
|
const SDK_USER_AGENT = "mailgun-sdk-php";
|
|
|
|
//Common Exception Messages
|
|
|
|
const EXCEPTION_INVALID_CREDENTIALS = "Your credentials are incorrect.";
|
|
const EXCEPTION_GENERIC_HTTP_ERROR = "An HTTP Error has occurred! Check your network connection and try again.";
|
|
const EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS = "The parameters passed to the API were invalid. This might be a bug! Notify support@mailgun.com.";
|
|
const EXCEPTION_MISSING_ENDPOINT = "The endpoint you've tried to access does not exist. This might be a bug! Notify support@mailgun.com.";
|
|
|
|
?>
|