aboutsummaryrefslogtreecommitdiff
path: root/conf.private.example.php
diff options
context:
space:
mode:
Diffstat (limited to 'conf.private.example.php')
-rw-r--r--conf.private.example.php13
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');