FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
mailgun
/
mailgun-php
/
src
/
Mailgun
/
Constants
Edit File: Api.php
<?php /* * 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 Mailgun\Constants; /** * @deprecated Will be removed in 3.0 */ class Api { const API_USER = 'api'; const SDK_VERSION = '1.7'; const SDK_USER_AGENT = 'mailgun-sdk-php'; const RECIPIENT_COUNT_LIMIT = 1000; const CAMPAIGN_ID_LIMIT = 3; const TAG_LIMIT = 3; const DEFAULT_TIME_ZONE = 'UTC'; }
Save
Back