Mailer.php
[Pman.Core] / Mailer.php
index 686c89c..be641ce 100644 (file)
@@ -492,6 +492,17 @@ class Pman_Core_Mailer {
         */
     }
     
+    function htmlbodySetClass($html, $cls)
+    {
+        $dom = new DOMDocument();
+        
+        @$dom->loadHTML('<?xml encoding="UTF-8">' .$html);
+        
+        $body = $dom->getElementsByTagName('body');
+        
+        
+    }
+    
     function fetchImage($url)
     {