From 1ba8d88bc889b2d58d8731d0357a945e7b47f52b Mon Sep 17 00:00:00 2001 From: edward Date: Mon, 26 Mar 2018 16:37:13 +0800 Subject: [PATCH] Mailer.php --- Mailer.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Mailer.php b/Mailer.php index 8d0be131..9daa52a6 100644 --- a/Mailer.php +++ b/Mailer.php @@ -380,7 +380,7 @@ class Pman_Core_Mailer { { $dom = new DOMDocument(); // this may raise parse errors as some html may be a component.. - @$dom->loadHTML($html); + @$dom->loadHTML('' .$html); $imgs= $dom->getElementsByTagName('img'); foreach ($imgs as $i=>$img) { @@ -411,7 +411,7 @@ class Pman_Core_Mailer { $dom = new DOMDocument(); // this may raise parse errors as some html may be a component.. - @$dom->loadHTML($html); + @$dom->loadHTML('' .$html); $links = $dom->getElementsByTagName('link'); $lc = array(); foreach ($links as $link) { // duplicate as links is dynamic and we change it..! @@ -456,10 +456,9 @@ class Pman_Core_Mailer { function htmlbodyInlineCss($html) { print_R($html);exit; - $dom = new DOMDocument(); - @$dom->loadHTML($html); + @$dom->loadHTML('' .$html); $html = $dom->getElementsByTagName('html'); $head = $dom->getElementsByTagName('head'); -- 2.39.2