diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-07-30 10:51:04 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-07-30 10:51:04 +0200 |
commit | a473d8009e5ef2043f1570acf632f3b1a1253ed0 (patch) | |
tree | 2df6ae10738e1f84c47f37f20d9e04fbd7e6ca5c /user_guide_src/source/libraries/email.rst | |
parent | a87aab39488367c18b9e60d2020665b17b35f4b1 (diff) |
Updated email library documentation
Diffstat (limited to 'user_guide_src/source/libraries/email.rst')
-rw-r--r-- | user_guide_src/source/libraries/email.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst index c5fa68004..f56bc2ff5 100644 --- a/user_guide_src/source/libraries/email.rst +++ b/user_guide_src/source/libraries/email.rst @@ -226,6 +226,14 @@ success or failure, enabling it to be used conditionally:: // Generate error } +This function will automatically clear all parameters if the request was + successful. To stop this behaviour pass FALSE:: + + if ($this->email->send(FALSE)) + { + // Parameters won't be cleared + } + $this->email->attach() ---------------------- |