This happens from time to time and it really drives me crazy. I cannot get the problem to reproduce, although I have plenty of evidence that it is happening. I have a php page that pulls in some database from mssql formats it in a nice table then send via email to a 3rd party. All of that works great. What happens is in some of the emails the first column will show the table cell information for the next column. See example:
Mascaw Mar. 8, 2012 - 6:15 pm Ronnie Johnson
Newtown Pike<td width="150"> Mar. 8, 2012 - 6:15 pm Todd Doe
Hall of Justice Mar. 8, 2012 - 6:15 pm Carol French
I had this problem before with another emailing system and found that wrapping the email to 900 before sending it out fixed it. I wrapped this with $message = wordwrap($message, 900, "\n", true); but it doesn't seem to make a difference.
Anyone ran into this before? Any help would be greatly appreciated! Thanks