diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-09 23:25:46 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-09 23:25:46 -0400 |
commit | 00d50594e51b8701b6117c0092ec8027c5d49a65 (patch) | |
tree | 7d8a755a44967e92890571605b404187a4dafa9f /config | |
parent | f7d20a2f81c9fcf1b6a7cd692d497842eb0ab10e (diff) | |
download | otakuhub-00d50594e51b8701b6117c0092ec8027c5d49a65.tar.xz |
Importing the swiftmail libraries
Diffstat (limited to 'config')
-rw-r--r-- | config/bootstrap.php | 4 | ||||
-rw-r--r-- | config/bootstrap/libraries.php | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/config/bootstrap.php b/config/bootstrap.php index 1ced565..bce1bc7 100644 --- a/config/bootstrap.php +++ b/config/bootstrap.php @@ -77,6 +77,10 @@ require __DIR__ . '/bootstrap/action.php'; */ require __DIR__ . '/bootstrap/media.php'; +//For the mail setup stuff +require __DIR__ . '/bootstrap/mail.php'; + + /** * This file configures console filters and settings, specifically output behavior and coloring. */ diff --git a/config/bootstrap/libraries.php b/config/bootstrap/libraries.php index e013ddc..e4d5ff4 100644 --- a/config/bootstrap/libraries.php +++ b/config/bootstrap/libraries.php @@ -124,4 +124,9 @@ Libraries::add('app', array('default' => true)); // Libraries::add('li3_docs'); Libraries::add('li3_flash_message'); Libraries::add('li3_paginate'); + +//Swiftmail integration +Libraries::add('li3_swiftmailer'); + + ?> |