I have read and read and can’t find a solution to this. I don’t get any html emails with this problem so it has to be something I am doing/not doing. I have a form that sends an html email to another user. The email contains a table that formats the information in the email. Before the email is sent I wrap it like this…
[php]$message = wordwrap($message, 900, “\n”, true);[/php]
Periodically the email will have table code show… of course I can’t post HTML but this is an idea of what it is doing. example:
col1 col2 col3
It doesn’t do this on all emails and on sometimes with the emails it does it on. No pattern that I can find. Has anyone ran into this before? I had the same type of problem before but adding the wordwrap fixed it. Doesn’t seem to be working this time around.
Any help is greatly appreciated.