Skip to content

Commit 1228cb9

Browse files
author
Sanjeev Papnoi
committed
Merge branch '1.0' into HEAD
2 parents 6e8d29f + 7dec5e9 commit 1228cb9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG-1.0.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ CHANGELOG for 1.0.x
33

44
This changelog references any relevant changes introduced in 1.0 minor versions.
55

6+
* 1.0.9 (2020-07-22)
7+
* **Issue #57:** Can't see embedded images in ticket.
8+
* **Issue #56:** refresh-mailbox produces Parse Error.
9+
610
* 1.0.8 (2020-05-26)
711
* **Misc. Updates:**
812
* Added some condition to remove redundency of tickets when more conversation between customer and agent and ticket get duplicates.
@@ -23,7 +27,7 @@ This changelog references any relevant changes introduced in 1.0 minor versions.
2327
* **Issue #38:** Issue for imap host field when add host inside qoutes ' '.
2428
* **Issue #28:** Error while edit disable mailbox.
2529
* **Issue #50:** Email setting are not being update in production mode.
26-
* **Issue #51:** Duplicate entry for ticket when running refresh command second time.
30+
* **Issue #51:** Duplicate entry for ticket when running refresh command second time.
2731

2832
* 1.0.3 (2019-11-15)
2933
* **Issue #46:** IMAP not creating tickets

Services/MailboxService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public function processMail($rawEmail)
318318
// Process Mail - Content
319319
$htmlFilter = new HTMLFilter();
320320
$mailData['subject'] = $parser->getHeader('subject');
321-
$mailData['message'] = autolink($htmlFilter->addClassEmailReplyQuote($parser->getMessageBody('html')));
321+
$mailData['message'] = autolink($htmlFilter->addClassEmailReplyQuote($parser->getMessageBody('htmlEmbedded')));
322322
$mailData['attachments'] = $parser->getAttachments();
323323

324324
if (!$mailData['message']) {

0 commit comments

Comments
 (0)