How can this be done? I want the image to shrink with the page width but that doesn't seem possible for outlook. Its seems like it requires a fixed width attribute on the image tag.
I still want a responsive image in gmail though so is it best to do a conditional?
if MSO
<img width=600/>
if !MSO
<img style="width: 100%"
Or is there a better way?