X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Mailer.php;h=23fb87582797ad3745dc1c904e95e84ed89847f5;hb=b341a92085a9d4a5cfb1d2043e599420472aa6c8;hp=9b84e5f3870cd176942a02579ca489c9013b91ea;hpb=23eb74f2085e09e79674b5b60078867a77e40f49;p=Pman.Core diff --git a/Mailer.php b/Mailer.php index 9b84e5f3..23fb8758 100644 --- a/Mailer.php +++ b/Mailer.php @@ -373,7 +373,10 @@ class Pman_Core_Mailer { 'Subject: ' . @$email['headers']['Subject'] ); } else { - $pg->addEvent("COREMAILER-FAIL", false, $ret->toString()); + $pg->addEvent("COREMAILER-FAIL", false, + "Sending to : " . ( is_array($rcpts) ? implode(', ', $rcpts) : $rcpts ) . + " Error: " . $ret->toString()); + } return $ret; @@ -400,6 +403,7 @@ class Pman_Core_Mailer { if(!array_key_exists($url, $urls)){ $conv = $this->fetchImage($url); + $urls[$url] = $conv; $this->images[$conv['contentid']] = $conv; } else { $conv = $urls[$url]; @@ -408,29 +412,8 @@ class Pman_Core_Mailer { $img->setAttribute('src', 'cid:' . $conv['contentid']); } - /* - foreach ($imgs as $i=>$img) { - $url = $img->getAttribute('src'); - if (preg_match('#^cid:#', $url)) { - continue; - } - $me = $img->getAttribute('mailembed'); - if ($me == 'no') { - continue; - } - - $conv = $this->fetchImage($url); - $this->images[$conv['contentid']] = $conv; - - $img->setAttribute('src', 'cid:' . $conv['contentid']); - } - * - */ - return $dom->saveHTML(); - - } function htmlbodyCssEmbed($html) { @@ -523,10 +506,14 @@ class Pman_Core_Mailer { @$dom->loadHTML('' .$html); $body = $dom->getElementsByTagName('body'); + if (!empty($body->length)) { + $body->item(0)->setAttribute('class', $cls); + } else { + $body = $dom->createElement("body"); + $body->setAttribute('class', $cls); + $dom->appendChild($body); + } - $class = $dom->createAttribute('class'); - $class->value = $cls; - $body->item(0)->appendChild($class); return $dom->saveHTML(); }