link.email¶
Email link ViewHelper. Generates an email link incorporating TYPO3s spamProtectEmailAddresses TypoScript setting.
Examples¶
Basic email link¶
<f:link.email email="foo@bar.tld" />
Output:
<a href="#" data-mailto-token="ocknvq,hqqBdct0vnf" data-mailto-vector="1">foo(at)bar.tld</a>
Depending on spamProtectEmailAddresses setting.
Email link with custom linktext¶
<f:link.email email="foo@bar.tld">some custom content</f:link.email>
Output:
<a href="javascript:linkTo_UnCryptMailto('ocknvq,hqqBdct0vnf');">some custom content</a>
Depending on spamProtectEmailAddresses setting.
Arguments¶
additionalAttributes¶
- DataType
mixed
- Required
false
- Description
Additional tag attributes. They will be added directly to the resulting HTML tag.
data¶
- DataType
mixed
- Required
false
- Description
Additional data-* attributes. They will each be added with a "data-" prefix.
aria¶
- DataType
mixed
- Required
false
- Description
Additional aria-* attributes. They will each be added with a "aria-" prefix.
email¶
- DataType
string
- Required
true
- Description
The email address to be turned into a link
class¶
- DataType
string
- Required
false
- Description
CSS class(es) for this element
dir¶
- DataType
string
- Required
false
- Description
Text direction for this HTML element. Allowed strings: "ltr" (left to right), "rtl" (right to left)
id¶
- DataType
string
- Required
false
- Description
Unique (in this file) identifier for this HTML element.
lang¶
- DataType
string
- Required
false
- Description
Language for this element. Use short names specified in RFC 1766
style¶
- DataType
string
- Required
false
- Description
Individual CSS styles for this element
title¶
- DataType
string
- Required
false
- Description
Tooltip text of element
accesskey¶
- DataType
string
- Required
false
- Description
Keyboard shortcut to access this element
tabindex¶
- DataType
integer
- Required
false
- Description
Specifies the tab order of this element
onclick¶
- DataType
string
- Required
false
- Description
JavaScript evaluated for the onclick event
name¶
- DataType
string
- Required
false
- Description
Specifies the name of an anchor
rel¶
- DataType
string
- Required
false
- Description
Specifies the relationship between the current document and the linked document
rev¶
- DataType
string
- Required
false
- Description
Specifies the relationship between the linked document and the current document
target¶
- DataType
string
- Required
false
- Description
Specifies where to open the linked document