Added the ability to set CRLF settings via config in the Email class.
Added SVN commit number to changelog
Fixed more guide typos and examples
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index 1896787..19121c5 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -491,6 +491,26 @@
 	// --------------------------------------------------------------------

 

 	/**

+	 * Set CRLF

+	 *

+	 * @access	public

+	 * @param	string

+	 * @return	void

+	 */	

+	function set_crlf($crlf = "\n")

+	{

+		if ($crlf != "\n" AND $crlf != "\r\n" AND $crlf != "\r")

+		{

+			$this->crlf	= "\n";	

+			return;

+		}

+	

+		$this->crlf	= $crlf;	

+	}

+  	

+	// --------------------------------------------------------------------

+

+	/**

 	 * Set Message Boundary

 	 *

 	 * @access	private