Mailer.php
authorAlan <alan@roojs.com>
Thu, 29 Sep 2022 07:54:05 +0000 (15:54 +0800)
committerAlan <alan@roojs.com>
Thu, 29 Sep 2022 07:54:05 +0000 (15:54 +0800)
Mailer.php

index 4cd985a..3868884 100644 (file)
@@ -271,8 +271,10 @@ class Pman_Core_Mailer {
                 if(preg_match('/text\/html/', $header['Content-Type'])){
                     $mime->setHTMLBody($parts[2]);
                     $mime->setTXTBody('This message is in HTML only');
+                    $this->textbody = 'This message is in HTML only';
                 }else{
                     $mime->setTXTBody($parts[2]);
+                    $this->textbody = $parts[2];
                     $mime->setHTMLBody('<PRE>'.htmlspecialchars($parts[2]).'</PRE>');
                 }
             }