Releases: willdurand/EmailReplyParser
Releases · willdurand/EmailReplyParser
2.2.2 (2014-10-21)
- Fixed: regex detecting signatures (see #25)
2.2.1 (2014-09-30)
- Fixed: allow 24 hours in quote headers
The library is now tested against HHVM and PHP 5.6 on Travis-CI.
2.2.0 (2014-08-07)
- Added: quote header regex for spanish
- Added: optimized regexes by removing useless capturing groups
- Added: test parsing 2 emails with the same parser
- Fixed: made the EmailParser reusable by clearing its internal state
- Fixed: improved the phpdoc in the library
2.1.0 (2014-07-16)
- Added: match more date quotes headers such as Gmail (French, English) and Thunderbird (French)
2.0.1
- Fixed: LSB (replacing
self::
withstatic::
)
2.0.0
First stable release of EmailReplyParser2.
2.0.0-alpha1 - Early release of the upcoming major version!
- Move plain old
Email
class toParser\EmailParser
— this class is now responsible for parsing emails and creatingEmail
/Fragment
objects (see below) - Move plain old
Fragment
class toParser\FragmentDTO
— it holds data to buildFragment
objects - Refactor
EmailParser
code (simplification, more typehints) - Add (new)
Email
class that contains a set ofFragment
objects, with a read only API => it is a value object - Add (new)
Fragment
class — it is a value object - Refactor tests to fit the new API, however nothing has been broken
- Update README and Composer config
- Extract method to create
Email
/Fragment
objects