Is there a way using the TinyMCE for Umbraco [Version 4.7] to keep the inline style element of an tag when it is changed in the editor.
We cannot use CSS as the html generated in this instance is for e-mail clients [inline styles are a necessary evil] and we are using a templating system for clients to edit emails without breaking layouts etc.
However, when changing a link from the default template, the standard is created without the inline styles from the template - any particular way around this.
Before edit :
<a target="_blank" href="http://#####.##.##/default.aspx"
style="color: #0a72ca; text-decoration: none;">Item</a>
After edit:
<a target="_blank" href="http://#####.##.##/default.aspx">Item</a>
Any help would be gratefully appreciated!