Problem
During processing of the mailer Outlook conditional tags (such as <!--[if mso]> are removed which messes up the layout.
This is caused by the following regex:
|
preg_match_all( "/\[if (.+?)?\](?:(.+?)?\[\/if\])?/", $mail['message'], $hasifs ); |
Solution
Make the regex more restrictive so Outlook conditional tags are not replaced.