diff options
author | Eric Roberts <eric@cryode.com> | 2012-08-03 22:39:04 +0200 |
---|---|---|
committer | Eric Roberts <eric@cryode.com> | 2012-08-03 22:39:04 +0200 |
commit | 17636e8bb20a4d53fec8fd8aaf530f53bd22d612 (patch) | |
tree | a844b9aff5ecb42ce2c49ea4e187ef44cc4d39a8 /user_guide_src/source/helpers | |
parent | da038d2ebccb4d45ea6d819c914563b2bc009a86 (diff) | |
parent | 6c94c2dcfb6557947c9ac67e419b2856fd80e01d (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r-- | user_guide_src/source/helpers/url_helper.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/user_guide_src/source/helpers/url_helper.rst b/user_guide_src/source/helpers/url_helper.rst index 82db6a5b3..305454048 100644 --- a/user_guide_src/source/helpers/url_helper.rst +++ b/user_guide_src/source/helpers/url_helper.rst @@ -207,7 +207,12 @@ Creates a standard HTML email link. Usage example echo mailto('me@my-site.com', 'Click Here to Contact Me'); As with the anchor() tab above, you can set attributes using the third -parameter. +parameter: + +:: + + $attributes = array('title' => 'Mail me'); + echo mailto('me@my-site.com', 'Contact Me', $attributes); safe_mailto() ============= |