We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4214148 commit a1d61c4Copy full SHA for a1d61c4
src/Models/Message.php
@@ -143,7 +143,7 @@ public function getBody(TextPart $part): bool|string|null
143
if ($part->getEncoding() === 'quoted-printable') {
144
return imap_qprint($body);
145
} elseif ($part->getEncoding() === 'base64') {
146
- return base64_decode($body);
+ return imap_base64($body);
147
} else {
148
return $body;
149
}
0 commit comments