Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
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

 


     Manoj
     Find me on LinkedIn

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

 


     Manoj
     Find me on LinkedIn

Avatar

Administrator

Hi @thomaso34696569 

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

Thanks!



Sukrity Wadhwa