diff options
author | InFog <junior@casoft.info> | 2012-07-29 18:42:50 +0200 |
---|---|---|
committer | InFog <junior@casoft.info> | 2012-07-29 18:42:50 +0200 |
commit | 220aa6a7c6e6dcf8d1ebb7a929fec198898373fa (patch) | |
tree | 1594dda52164d59a54f8731590d7fbae1ba1ab3b /user_guide_src | |
parent | d83e727d6deedded5b637e685accb4fac0dc3985 (diff) |
Added documentation for mail_to function.
Diffstat (limited to 'user_guide_src')
-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() ============= |