summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-07-29 22:14:20 +0200
committerAndrey Andreev <narf@bofh.bg>2012-07-29 22:14:20 +0200
commitb92c44bba729575a92c80313174d45191cae582e (patch)
treed4c261f6962b385bc5ae58f0b57b6c987c058ce5
parentb01b4f5507523155a598d4ee03d2709a275e88cf (diff)
parent45870a8b82d84522751df173c6d044eef6b3551f (diff)
Merge pull request #1670 from CaSoft/develop
Added documentation for mailto function
-rw-r--r--user_guide_src/source/helpers/url_helper.rst7
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()
=============