Skip to content

Releases: benhall14/php-imap-reader

v1.6.1

15 Sep 15:11

Choose a tag to compare

Bugfix to help with the parsing of Italian PEC (Posta Elettronica Certificata) email attachments.

Proposed and written by @ErikDW1

v1.6

11 Sep 16:02

Choose a tag to compare

Fixes a loophole whereby mbstring is installed, but not compiled with the selected encoding type. I ran into an issue with Windows-1257 breaking the encoding, as it wasn't compiled. The fix would cleanly pass this through to iconv instead to clean up.

v1.5.7

09 Jul 22:18

Choose a tag to compare

Added support to be able to return all email headers or fetch a specific header.

For example:

$thread_index = $email->getHeader('Thread-Index');

v1.5.6

15 Aug 22:13

Choose a tag to compare

Bugfix to address the issue with setAttachmentContent being called in Reader.php but the actual Email method is setAttachmentData.

v1.5.5

19 May 19:49

Choose a tag to compare

Bugfix to remove the "Creation of dynamic property is deprecated" warning.

v.1.5.4

18 Apr 10:52

Choose a tag to compare

Bugfix for setting attachment data on the fly.

v1.5.3

06 Feb 11:47

Choose a tag to compare

Added a check to make sure the email attachment id/filepath is set before the str_replace'ment. Fixes the deprecated null str_replace parameter issue.

v1.5.2

20 Nov 21:30

Choose a tag to compare

Added the missing attachment data as a property to fix a bug when using the attachment content() method.

v1.5.1

14 Mar 12:40

Choose a tag to compare

Added expunge functionality to delete any email flagged for deletion.

v1.5

04 Nov 19:05

Choose a tag to compare

Added functionality to create a mailbox/folder on the IMAP stream via the Reader, as well as the ability to check if a mailbox already exists on the IMAP stream.