Skip to content

Commit

Permalink
Merge branch 'utf8-body-encoding' of github.com:cmoralesweb/imap into…
Browse files Browse the repository at this point in the history
… cmoralesweb-utf8-body-encoding
  • Loading branch information
ddeboer committed Aug 10, 2014
2 parents f62edb9 + 4a8ccdd commit f5e0adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ddeboer/Imap/Message/Part.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function getDecodedContent()
break;

case self::ENCODING_QUOTED_PRINTABLE:
$this->decodedContent = \quoted_printable_decode($this->getContent());
$this->decodedContent = \utf8_encode( \quoted_printable_decode($this->getContent()));
break;

case self::ENCODING_7BIT:
Expand Down

0 comments on commit f5e0adf

Please sign in to comment.