Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!
SOLVED

Pictures in Outllok

Avatar

Level 2

We are trying to use GIF in our mail.
But the problem is that some outlook version does not support GIF's.

How can I do a fallback to a png-file  when a customer is open the email in outlook?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @thomaso34696569 

 

Outlook 2002 supports GIF but 2007 to 2016 does not.

 

Here the conditional code which you can use to use an animated GIF for the 2003 version but a static version for the others.

<!--[if mso 11]><!-->  <!--- Code for OutLo0k 2003-->

<img class="outlookcomIMG" src="ANIMATED.gif">

<!--<![endif]-->

<!--[if gte mso 11]>

<img src="STATIC.jpg">

<![endif]-->

Let me know if this works.

 

Thanks

 

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hello @thomaso34696569 

 

Outlook 2002 supports GIF but 2007 to 2016 does not.

 

Here the conditional code which you can use to use an animated GIF for the 2003 version but a static version for the others.

<!--[if mso 11]><!-->  <!--- Code for OutLo0k 2003-->

<img class="outlookcomIMG" src="ANIMATED.gif">

<!--<![endif]-->

<!--[if gte mso 11]>

<img src="STATIC.jpg">

<![endif]-->

Let me know if this works.

 

Thanks

 

Avatar

Administrator

Hi @thomaso34696569 

Did this given solution resolve your query? Kindly let us know.

Thanks!