I am trying to use two conditional statements in HTML email template. The statements are testing for the MS Outlook client, if true it will render an image, otherwise it will hit the next statement to test if the client is NOT MS Outlook, then render some separate HTML.
<!--[if mso]>
...
<!--<![endif]-->
<!--[if !mso]><!-- -->
...
<!--<![endif]-->
This works great for the majority of Outlook desktop clients, however Outlook 2003, 2011 and 2016 (mac) seem to be ignoring the if mso
statement. The other issue that I have here is that Outlook.com doesn't seem to recognise this statement either.
I was wondering if anybody else had come across this issue in the past and if so what was their solution around this? I imagined the if mso
statement would pickup any form of Outlook client but my assumption seems to be wrong.
Any help would be appreciated :)
Cheers!