diff options
author | Camil Staps | 2016-07-31 09:40:25 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-31 09:40:25 +0200 |
commit | 1ec8d12a7b125d41ecb723c5d83f2afef95408e9 (patch) | |
tree | 4d103ccbab48d2217e1ae13d37c229e4060e9184 /conf.private.example.php | |
parent | Give new files a key (diff) |
0.5.2 emails
Diffstat (limited to 'conf.private.example.php')
-rw-r--r-- | conf.private.example.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/conf.private.example.php b/conf.private.example.php index a9275b1..b389c4c 100644 --- a/conf.private.example.php +++ b/conf.private.example.php @@ -12,3 +12,16 @@ define('BRAINTREE_ENVIRONMENT', 'sandbox'); define('BRAINTREE_MERCHANT', ...); define('BRAINTREE_KEY_PUBLIC', ...); define('BRAINTREE_KEY_PRIVATE', ...); + +// Mailer settings +define('SMTP_HOST', ...); +define('SMTP_AUTH', true); +define('SMTP_USERNAME', ...); +define('SMTP_PASSWORD', ...); +define('SMTP_SECURE', 'tls'); +define('SMTP_PORT', 587); +define('SMTP_OPTIONS', ...); // JSON array, can be used to turn off SSL verification (http://stackoverflow.com/a/28759959/1544337) + +define('MAILER_FROM', 'MY_EMAIL;MY_NAME'); +define('MAILER_REPLY_TO', ...); +define('MAILER_BCC', 'MY_EMAIL'); |