I need to create an email with two different links, one to be visible only in Gmail and the other only in Outlook. I discovered that I should use mso-hide for Outlook and display none for Gmail, but neither seem to be working as expected. When I use display none, it hides my element in both Outlook and Gmail, and mso-hide doesn't have any effect. Here is what I tried:
<!--[if !mso 9]><!-->
<div style="mso-hide:all">
Content 02
</div>
<!--<![endif]-->
<div style='display: none;'>
Content 03
</div>
Is there a solution to hide an element only on Outlook and another only on Gmail?