Releases: Webklex/laravel-imap
Releases · Webklex/laravel-imap
1.0.5.0
- Message search method added
- Basic pagination added
- Prevent automatic body parsing (will be default within the next major version (2.x))
- Unified MessageCollection::class added
- Several small improvements and docs added
- Implementation of the "get raw body" pull request #59
- Get a single message by uid
1.0.4.2
Support message delivery status #47
1.0.4.1
Enable support to get In-Reply-To property from Message header. #56
1.0.4.0
- Set and unset flags added
$oMessage->setFlag(['Seen', 'Spam']) or $oMessage->unsetFlag('Spam')
- Get raw header string
$oMessage->getHeader()
- Get additional header information
$oMessage->getHeaderInfo()
1.0.3.10
- Ignore inconvertible chars in order to prevent sudden code exists
1.0.3.9
- #45 DateTime::__construct(): Failed to parse time string (...)
1.0.3.8
- #41 imap_expunge(): supplied resource is not a valid imap resource
- #40 mb_convert_encoding(): Illegal character encoding specified
1.0.3.7
- Fix assignment
msgno
to uid
regardless of fetch_options
is set in config
- Disposition is checked in case of malformed mail attachments
1.0.3.6
Merged "Added getUnseenMessages" #33