Skip to content

Commit 47a3852

Browse files
committed
Merge pull request #85 from alex-LE/master
Fixed decoding of subject
2 parents 5188586 + d3986c7 commit 47a3852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpImap/Mailbox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ protected function initMailPart(IncomingMail $mail, $partStructure, $partNum, $m
470470
$data = imap_base64($data);
471471
}
472472
elseif($partStructure->encoding == 4) {
473-
$data = imap_qprint($data);
473+
$data = quoted_printable_decode($data);
474474
}
475475

476476
$params = array();

0 commit comments

Comments
 (0)