summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/bootstrap/mail.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/bootstrap/mail.php b/config/bootstrap/mail.php
new file mode 100644
index 0000000..047a90b
--- /dev/null
+++ b/config/bootstrap/mail.php
@@ -0,0 +1,14 @@
+<?php
+
+use li3_swiftmailer\mailer\Transports;
+
+Transports::config(array('default' => array(
+ 'adapter' => 'Smtp',
+ 'host' => 'smtp.google.com',
+ 'port' => 587,
+ 'encryption' => 'tls',
+ 'username' => 'you@gmail.com',
+ 'password' => '#########'
+)));
+
+?> \ No newline at end of file