Observing HTML best practices rules
We present you here the best practices rules that you should respect to ensure that your HTML files work correctly and that it works properly in your recipients' mail client.
Links
Always opening links in another windows/tab
When the user clicks in the links of your email, it's interesting to open the link in a new window. In this way, when the user closes the window, they will still be in your email.
How do you do it?
Add the attribute target="_blank" on your tag <a href="#"/>
Example:
<a href="http://www.actito.net" target=”_blank”>actito.net</a>