toolsnz
Forum Replies Created
-
“It is very unfair the review you have left these people just because you did not understand what the plugin is doing”
… please refer to my initial post. I am not referring to the content of the documentation is poor, but rather that the links to the documentation are broken…. therefore poorly documented.
In “/classes/es-sendmail.php” Line 336:
$content = str_replace("\r\n", "<br />", $content);Is the search term and replacement back to front?
If I change to;
$content = str_replace("\r\n", "", $content);the problem then seems to go away?
For reference Line 335 – 339:
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) { $content = str_replace("\r\n", "<br />", $content); } else { $content = str_replace("<br />", "\r\n", $content); }I have the same problem, but I don’t seem to be using ###POSTFULL### unless it’s being used somewhere I can’t find?
For example the preview looks fine, but when sent the email contains;
<table align=center”><br /><tbody><br /><tr><br /><td style=3D”text-align: center;”><br />…. and so on
Thats a <br /> inserted after every HTML element.
Forum: Fixing WordPress
In reply to: Global Custom AttributesMy bad… thanks – done