summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-07-10 15:47:15 -0400
committerMichael Francis <edude03@gmail.com>2011-07-10 15:47:15 -0400
commit97a1eda1811c2124776a7efdcb8caee78f999a5a (patch)
tree48b3ccbf4ad1aad9290cdf2e5a24fc9bfbd6df7f
parentde15fbb36c8c278f94e3b16d53b54a59b5a5e62a (diff)
downloadotakuhub-97a1eda1811c2124776a7efdcb8caee78f999a5a.tar.xz
Mail configuration
-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