From 757ccf869dea14fb65bec9952a704f02a69e85a8 Mon Sep 17 00:00:00 2001
From: Rick Ellis
Once loaded, the library will be ready for use, using $this->email->some_function(). -Each library is described in detail in its own page, so please read the information regarding each one you would like to use.
+Library files can be stored in subdirectories within the main "libraries" folder, or within your personal application/libraries folder. +To load a file located in a subdirectory, simply include the path, relative to the "libraries" folder. +For example, if you have file located at:
+ +libraries/flavors/chocolate.php
+
+You will load it using:
+ +$this->load->library('flavors/chocolate');
+
+You may nest the file in as many subdirectories as you want.
+ +Each library is described in detail in its own page, so please read the information regarding each one you would like to use.
-Parameters can be passed to the library via an array in the second parameter.