We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving email from gmail with plain text attachment file, here are the part details:
stdClass Object ( [type] => 0 [encoding] => 3 [ifsubtype] => 1 [subtype] => PLAIN [ifdescription] => 0 [ifid] => 0 [lines] => 434 [bytes] => 21690 [ifdisposition] => 1 [disposition] => ATTACHMENT [ifdparameters] => 1 [dparameters] => Array ( [0] => stdClass Object ( [attribute] => FILENAME [value] => filename.txt ) ) [ifparameters] => 0 [parameters] => stdClass Object ( ) )
AbstractPart::isAttachment() does not detect it as attachment because subtype is 'PLAIN':
AbstractPart::isAttachment()
subtype
self::SUBTYPE_PLAIN !== \strtoupper($part->subtype)
The text was updated successfully, but these errors were encountered:
Still a problem on current 1.5.4, any news?
Sorry, something went wrong.
8a1a6e8
Bugfix released in 1.5.5
No branches or pull requests
Receiving email from gmail with plain text attachment file, here are the part details:
AbstractPart::isAttachment()
does not detect it as attachment becausesubtype
is 'PLAIN':self::SUBTYPE_PLAIN !== \strtoupper($part->subtype)
The text was updated successfully, but these errors were encountered: