We're banging our heads on an issue where we have a nicely formatted HTML newsletter that, once it's sent to someone on Windows using Outlook 2016, completely blows up.
The main issue is that the email is meant to be fixed-width but Outlook 2016 renders it full width.
After much frustration we realized the following:
- Creating the HTML email in Mac 16 Outlook is fine
- Sending it from Mac 16 Outlook is fine
- Reading it in Mac 16 Outlook is fine
- Reading it in Windows Outlook 2016 breaks it
- Forwarding said email from windows to Mac also shows the issue on the Mac.
I think I found out what is causing the issue, but not why it's happening. When I view the source of the forwarded email, I see that the widths of some of my tables have been forced to a much larger setting.
So, whereas I had:
<td width="793"...
The source in the broken email now shows:
<td width="1118" style="width: 594.75pt...
I'm stumped. Is Windows Outlook resizing TD indicative of anything in particular I need to do in my HTML to get this to work?