Contact fields
Name | Description |
---|---|
[contact:email] | Email address of the contact. |
[contact:name{Name}] | Name of the contact (if the field is not populated, the text enclosed in curly brackets is inserted). |
Note:
To insert values stored in a simple relation field connected to a custom table use
To insert values stored in a simple relation field connected to a custom table use
[contact:myidfield$tablefield]
, for example [contact:NAME] employed at [contact:company$corporatename]
Sharing icons
The sharing icons associated with a sharing link allow recipients to share the communication on their social channels.
- Facebook:
<img src="[ico:facebook]" />
- LinkedIn:
<img src="[ico:linkedin]" />
- X:
<img src="[ico:twitter]" />
- Email:
<img src="[ico:email]" />
Message variables
Message variables can be inserted within the content of the communications.
Name | Description |
---|---|
[message:fromname] | Contains the name of the sender of the sent communication. |
[message:email] | Contains the email address of the sender of the sent communication. |
[message:deliverydate] | Contains the start date of the delivery. |
[message:firstdeliverydate] | Contains the date of the first delivery (useful if you wish to keep track of the first delivery date of a communication in case of a recall). |
Special message variables
Name | Description | Example |
---|---|---|
htmlversion | true if the message version is HTML. | <span mn:if='htmlversion'>This text will only be visible in the HTML version of the message</span> |
txtversion | true if the message version is text. | <span mn:if='txtversion'>This text will only be visible in the text version of the message</span> |
mn:onlytxtversion | The element enclosed in the tag will only be visible in the text version of the communication. | <span mn:onlytxtversion> This text is NOT visible in the HTML version, but only in the automatically generated text version</span> |
mn:onlyhtmlversion | The element enclosed in the tag will only be visible in the HTML version of the communication. | <span mn:onlyhtmlversion> This text is NOT visible in the auto-generated text version</span> |
emailversion | It can be true or false depending on whether the email version of the communication is being displayed. | <span mn:if='emailversion'>Click here to view the web version</span> |
webversion | It can be true or false depending on whether the web version of the communication is being displayed. | <span mn:if='webversion'>You clicked so you are viewing the web version of the communication</span> / |
friend | Checks if the communication being viewed has been forwarded to a friend. | <a href="[link:subscribe]" mn:if="friend">Subscribe</a> |
contact.identified | Checks if the contact is recognized. | <a href="[link:unsubscribe]" mn:if="not friend and contact.identified">Unsubscribe</a> |