f:link.email¶
Email link ViewHelper. Generates an email link incorporating TYPO3s spamProtectEmailAddresses-settings.
Properties¶
All the universal tag attributes
Exclusive properties for the HTML-Element¶
name¶
- Variable type
- String
- Description
- Specifies the name of an anchor.
- Default value
- NULL
- Mandatory
- No
rel¶
- Variable type
- String
- Description
- Specifies the relationship between the current document and the linked document.
- Default value
- NULL
- Mandatory
- No
rev¶
- Variable type
- String
- Description
- Specifies the relationship between the linked document and the current document.
- Default value
- NULL
- Mandatory
- No
target¶
- Variable type
- String
- Description
- Specifies where to open the linked document.
- Default value
- NULL
- Mandatory
- No
Examples¶
Basic email link
<f:link.email email="foo@bar.tld" />
<a href="javascript:linkTo_UnCryptMailto('ocknvq,hqqBdct0vnf');">foo(at)bar.tld</a>
(depending on your spamProtectEmailAddresses-settings)
Email link with custom linktext
<f:link.email email="foo@bar.tld">some custom content</f:link.email>
<a href="javascript:linkTo_UnCryptMailto('ocknvq,hqqBdct0vnf');">some custom content</a>