The use of mn:editable
applied to a link transforms it into an object that can be configured by the user.
You can customize:
- URL (the text of the link);
- Title (the label displayed in reports);
- Define if the link is a service link (in this case, it will not be considered in the calculation of Click-To-Open-Rate and Click-Rate);
- Define if you want to avoid recording statistics related to this link.
Warning:
Do not insert an image in a <a href=""> tag.
If you want to make an image clickable, use the
Do not insert an image in a <a href=""> tag.
If you want to make an image clickable, use the
mn:editable
attribute in the <img src=""> tag and define the link it should point to in its properties.The syntax for an editable link is:
<a mn:editable>This is a link</a>
The basic attributes for mn:editable applied to a link are:
Attribute | Description |
---|---|
title="reportName" | Name of the link as shown in reports |
mn:taglist="tagName" | Pre-filled tags |
mn:notrack | The link should not be tracked |
mn:servicelink | Service link |
mn:conversionlink | Conversion link |
mn:onclickaction | Action executed upon clicking the link |
<a mn:editable="" href="http://www.magnews.it" mn:taglist="tag1,tag2" title="Report Name">Link with tag1 and tag2></a>
<a mn:editable="" href="http://www.magnews.it" mn:notrack>Untracked link</a>
<a mn:editable="" href="http://www.magnews.it" mn:servicelink>Service link</a>
<a mn:editable="" mn:conversionlink>Conversion link</a>
<a mn:editable="" mn:onclickaction=''>Link that executes post-click action</a>
<a mn:editable="" mn:onclickaction='actionname'>Link that executes action actionname</a>