I wasn't following the CI code style guide.
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index 73ff2e7..c7d0bc5 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -385,10 +385,10 @@
 
 		//strip slashes only if magic quotes is ON
 		//if we do it with magic quotes OFF, it strips real, user-inputted chars.
-	        if (get_magic_quotes_gpc())
-	        {
+		if (get_magic_quotes_gpc())
+		{
 			$this->_body = stripslashes($this->_body);
-	        }
+		}
 
 		return $this;
 	}