Didn't there use to be the smarty tag {mailto} plus description in the Tag list?
I'm using CMS 1.4.1 and can't find any description of the tag anywhere in admin - Has the {mailto} tag ever been in the Tag list or is only in the Wiki online this tag is described?
[SOLVED] Mailto (smarty) tag
[SOLVED] Mailto (smarty) tag
Last edited by webform on Wed Aug 27, 2008 4:14 pm, edited 1 time in total.
Re: Mailto (smarty) tag
Hi,

http://www.smarty.net/manual/en/languag ... mailto.php
see on websitecan't find any description of the tag anywhere

http://www.smarty.net/manual/en/languag ... mailto.php
Jean-Claude Etiemble MyPageFr
Re: Mailto (smarty) tag
You can find also a very small manual inside the smarty plugin file function.mailto.php in /lib/Smarty/plugins 

/**
* Smarty {mailto} function plugin
*
* Type: function
* Name: mailto
* Date: May 21, 2002
* Purpose: automate mailto address link creation, and optionally
* encode them.
* Input:
* - address = e-mail address
* - text = (optional) text to display, default is address
* - encode = (optional) can be one of:
* * none : no encoding (default)
* * javascript : encode with javascript
* * javascript_charcode : encode with javascript charcode
* * hex : encode with hexidecimal (no javascript)
* - cc = (optional) address(es) to carbon copy
* - bcc = (optional) address(es) to blind carbon copy
* - subject = (optional) e-mail subject
* - newsgroups = (optional) newsgroup(s) to post to
* - followupto = (optional) address(es) to follow up to
* - extra = (optional) extra tags for the href link
*
* Examples:
*
* {mailto address="me@domain.com"}
* {mailto address="me@domain.com" encode="javascript"}
* {mailto address="me@domain.com" encode="hex"}
* {mailto address="me@domain.com" subject="Hello to you!"}
* {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"}
* {mailto address="me@domain.com" extra='class="mailto"'}
*
* @link http://smarty.php.net/manual/en/languag ... mailto.php {mailto}
* (Smarty online manual)
* @version 1.2
* @author Monte Ohrt
* @author credits to Jason Sweat (added cc, bcc and subject functionality)
* @param array
* @param Smarty
* @return string
*/
Re: Mailto (smarty) tag
Thank you very much.
I was only looking in the plugins folder and in the Tag list and couldn't find it!
I was only looking in the plugins folder and in the Tag list and couldn't find it!