diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
commit | e22da9d32addefa8d739171febcf6f6d0c06ba7b (patch) | |
tree | affb9f8729ac9d4f07dd7f24dff39bfaa9cda0ff /app/constants.php | |
parent | 4f32352fe62e47ad5ea760eb00493bdc061b2407 (diff) |
Add Mailgun API as mail transport
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index b487e0bd..0b934569 100644 --- a/app/constants.php +++ b/app/constants.php @@ -65,6 +65,8 @@ defined('MAIL_SMTP_PASSWORD') or define('MAIL_SMTP_PASSWORD', ''); defined('MAIL_SMTP_ENCRYPTION') or define('MAIL_SMTP_ENCRYPTION', null); defined('MAIL_SENDMAIL_COMMAND') or define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); defined('POSTMARK_API_TOKEN') or define('POSTMARK_API_TOKEN', ''); +defined('MAILGUN_API_TOKEN') or define('MAILGUN_API_TOKEN', ''); +defined('MAILGUN_DOMAIN') or define('MAILGUN_DOMAIN', ''); // Enable or disable "Strict-Transport-Security" HTTP header defined('ENABLE_HSTS') or define('ENABLE_HSTS', true); |