diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html
index 48d9d23..4257df1 100644
--- a/user_guide/libraries/email.html
+++ b/user_guide/libraries/email.html
@@ -237,10 +237,19 @@
$this->email->send();<br />
}</code>
+<p>If you set the parameter to TRUE any attachments will be cleared as well:</p>
+
+<code>$this->email->clear(TRUE);</code>
+
<h3>$this->email->send()</h3>
-<p>The Email sending function. Returns boolean TRUE or FALSE based on success for failure, enabling it to be used
-conditionally.</p>
+<p>The Email sending function. Returns boolean TRUE or FALSE based on success or failure, enabling it to be used
+conditionally:</p>
+
+<code>if ( ! $this->email->send())<br />
+{<br />
+ // Generate error<br />
+}</code>
<h3>$this->email->attach()</h3>