How do email clients deal with img constraints as attributes vs inline styles?
<img src="http://imperavi.com/img/redactor-image.jpg" width="1400" >
https://www.emailonacid.com/app/acidtest/display/summary/FAPNOuxiTtQN72OswSOfnQWbfnZswUAHhGCPbuzh4hk9a/shared
<img src="http://imperavi.com/img/redactor-image.jpg" width="1400" height="582" >
https://www.emailonacid.com/app/acidtest/display/summary/CbRqMbMtCbVdpggthGRn5QPWeidpIo8aHaa6kl8TCqaD6/shared
<img src="http://imperavi.com/img/redactor-image.jpg" style="width: 120px; " >
https://www.emailonacid.com/app/acidtest/display/summary/CemSW48eKxJBuQqCIO8oh8y77muOKfPvBsYsDjyswhi8g/shared
<img src="http://imperavi.com/img/redactor-image.jpg" style="width: 120px; height: 50px;" >
https://www.emailonacid.com/app/acidtest/display/summary/vjAVkYnlD3TQyrfIDj4NGvoneeDc8hakzLaHdMsETaGSE/shared
So, img size constraints should not be set with inline styles, primarily because Outlook 2007/2010/2013 does not honor them.
What happens when both attributes and inline styles are in use? Some clients use one or the other, and some use the inline width in combination with the attribute height:
<img src="http://imperavi.com/img/redactor-image.jpg" width="1400" height="582" style="width: 120px; height: 50px;" >
https://www.emailonacid.com/app/acidtest/display/summary/6JdKm63qDVDxHuaJE2lZhV4NAOq8qxG4eSQ7VWRUALWLP/shared
tldr: Use img attributes for html email.