ACC expression Help for MSO | Community
Skip to main content
Level 2
November 13, 2020
Solved

ACC expression Help for MSO

  • November 13, 2020
  • 1 reply
  • 1653 views

When sending an email we have no tags in the HTML content source. But unfortunately, we have space in between tags.  Can we remove the space in between using an expression?

 
Eexted
<!--[if mso]>
<!--[if !mso]>-->
<!--<!endif]-->
<![endif]-->
 
But Currently we have 
<!-- [if mso]>
<!-- [if !mso]> -->
<!-- <!endif] -->
<! [endif] -->
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Milan_Vucetic

Hi @mdevapathni

Try adding the .outlookfix class all tags.

<!--[if gte mso 9]>       
<style>
.outlookfix{font-size: 0%;line-height: 0;}
</style>
<![endif]-->

1 reply

Milan_Vucetic
Milan_VuceticAccepted solution
Level 9
November 15, 2020

Hi @mdevapathni

Try adding the .outlookfix class all tags.

<!--[if gte mso 9]>       
<style>
.outlookfix{font-size: 0%;line-height: 0;}
</style>
<![endif]-->
Level 2
November 18, 2020
@milan_vucetic Can we add expression to workflow to update html source?