Releases: barbushin/php-imap
Releases · barbushin/php-imap
3.0.26: Fixed PHP CS issues
This version does not have any code changes.
There were only changes to the formatting of the comments and code, so the builds no longer fail.
3.0.25: Fixed incorrect booleans for checking IncomingMail[] properties
- Added Visual Studio Code to gitignore
- Issue #198: Added magic function __isset() to fix incorrect booleans for isset() and empty() on IncomingMail[] properties
- Added a comment to magic function __get()
- Fixed a few PHP CS issues
3.0.24: Fixed incorrect parsed multipart mails
- Added php_codesniffer (phpcs) as dev requirement for checking the code
- Added working examples
- Issue #198: Fixed incorrect parsed multipart mails
- CodeClimate: Added example files to ignore list
3.0.23: Fix Undefined property stdClass::$disposition
3.0.22: Fixes for parsing parts and another encoding issues
3.0.21: Avoids duplicated attachments and fixed decoding issues
- Issue #336: Updated requirements and relevant PHPUnit test; Fixed undefined function mb_list_encodings()
- Issue #335: Added some more PHPUnit tests for en- and decoding strings
- Issue #338: Avoid duplicated files from the same mail
- Issue #340: Show, if email has attachments or not without processing these
- Issue #339: Fixed decoding issue with mailbox folder names (Thanks to @MomentD)
- PR #342: Fix many typos (Thanks to @quentinus95)
- PR #343: Add missing required ext (Thanks to @quentinus95)
3.0.20: Fixes an issue with mb_convert_encoding()
- PR #334: Fix 'mb_convert_encoding(): Illegal character encoding specified'
3.0.19: Fixed missing subject and replaced incorrect variables
- PR #331: Fixed missing subject and to header in getMailsInfo function (Thanks to @ebrana-devs)
3.0.18: Improved decoding of mime strings to avoid error messages
- PR #329: Improved decoding of mime strings to avoid error messages (Thanks to @quentinus95)
3.0.17: Fixed PHPUnit tests, setConnectionArgs() and string encoding
- Fix an issue that checking valid params in the setConnectionArgs function
- Issue #324: Changed string encoding from decodeMimeStr() to convertStringEncoding()
- Removed first check, if param is array as it would never throw an exception otherwise
- Added info to setConnectionArgs(), which option is invalid
- PR #325: PHPUnit tests were not working as expected