From 6124cdef7400a29aaa29ec4e78e459b513f3c551 Mon Sep 17 00:00:00 2001 From: Florent Viel Date: Tue, 16 Dec 2014 14:59:32 +0100 Subject: [PATCH] fix html fetch --- src/Fetch/Message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fetch/Message.php b/src/Fetch/Message.php index e7939f2..67bb1bf 100755 --- a/src/Fetch/Message.php +++ b/src/Fetch/Message.php @@ -504,7 +504,7 @@ class Message } $this->plaintextMessage .= trim($messageBody); - } else { + } elseif (strtolower($structure->subtype) === 'html') { if (isset($this->htmlMessage)) { $this->htmlMessage .= '

'; } else {