From 1ec8d12a7b125d41ecb723c5d83f2afef95408e9 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sun, 31 Jul 2016 09:40:25 +0200 Subject: 0.5.2 emails --- conf.private.example.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'conf.private.example.php') 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'); -- cgit v1.2.3