I am in the process of constructing an HTML code for a newsletter campaign. My main challenge is to come up with a solution for an if statement that generates code specifically for Microsoft Outlook 2019.
This code snippet works for both Outlook 2016 and Outlook 2019:
<!--[if mso 16]>
<span style="color:red">mso 16</span>
<![endif]-->
However, the following snippets do not work as expected:
<!--[if gt mso 16]>
<span style="color:red">gt mso 16</span>
<![endif]-->
<!--[if mso 19]>
<span style="color:red">mso 19</span>
<![endif]-->
<!--[if mso 365]>
<span style="color:red">mso 365</span>
<![endif]-->
Is there any way to use HTML conditionals to differentiate between Outlook 2016 and Outlook 2019?