You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An email with an embedded email can have the following structure:
1: "text/plain"
2: "message/rfc822"
2: "multipart/mixed"
2.1: "text/plain"
2.2: "application/octet-stream"
2.3, "application/octet-stream"
Before this fix this structure was parsed as
1: "text/plain"
2: "message/rfc822"
2.1: "multipart/mixed"
2.1.1: "text/plain"
2.1.2: "application/octet-stream"
2.1.3, "application/octet-stream"
Hence, downloading attachments was not possible due to wrong part
identifiers
resolvestedious#188, tedious#43
I'm using this Class since two years ago.
I want now save the attachments from the incoming email but it saves just the filename with cero data.
`
$attachments = $message->getAttachments();
if ($attachments !== false) {
foreach ($attachments as $attachment) {
The text was updated successfully, but these errors were encountered: