mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-08-20 17:28:48 +02:00
* include/swiftmailer/* : add the library "Swift Mailer" for make more easy and less bugs the source code. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2195 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
22 lines
601 B
PHP
22 lines
601 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of SwiftMailer.
|
|
* (c) 2004-2009 Chris Corbyn
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/*
|
|
* Dependency injection initialization for Swift Mailer.
|
|
*/
|
|
|
|
//Load in dependency maps
|
|
require_once dirname(__FILE__) . '/dependency_maps/cache_deps.php';
|
|
require_once dirname(__FILE__) . '/dependency_maps/mime_deps.php';
|
|
require_once dirname(__FILE__) . '/dependency_maps/transport_deps.php';
|
|
|
|
//Load in global library preferences
|
|
require_once dirname(__FILE__) . '/preferences.php';
|