summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authortrit <tritrei@gmail.com>2011-11-23 23:57:48 +0100
committertrit <tritrei@gmail.com>2011-11-23 23:57:48 +0100
commite3d60b8880abb09555509e650aafe07136d1adee (patch)
treed88c03d6d1479231defb2e82582c0ceb0ebf98c9 /user_guide_src/source
parent88c739e7c17edf99c68b7a139f84455c73c4c698 (diff)
Reworded new attach() section in email user guide
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/libraries/email.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst
index 66769a8dd..27b704dae 100644
--- a/user_guide_src/source/libraries/email.rst
+++ b/user_guide_src/source/libraries/email.rst
@@ -228,7 +228,7 @@ use the function multiple times. For example::
$this->email->attach('/path/to/photo2.jpg');
$this->email->attach('/path/to/photo3.jpg');
-If you'd like to change the disposition or add a custom file name, use the second and third paramaters. Leaving the second parameter blank will default to attachment::
+If you'd like to change the disposition or add a custom file name, you can use the second and third paramaters. To use the default disposition (attachment), leave the second parameter blank. Here's an example::
$this->email->attach('/path/to/photo1.jpg', 'inline');
$this->email->attach('/path/to/photo1.jpg', '', 'birthday.jpg');