This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
zend-mail 2.9.0
zend-mail 2.9.0
Added
- #177
#181
#192
#189 PHP 7.2 support - #73
#160 Support for
mails that don't have aTo
, as long asCc
orBcc
are set. - #161 removed
useless try-catch that just re-throws. - #134 simplified
checks for the existence of some string sub-sequences, which were
needlessly performed via regular expressions
Deprecated
- Nothing.
Removed
Fixed
- #188 split strings
before callingiconv_mime_decode()
, which destroys newlines, rendering
DKIM parsing useless. - #156 fixed a
regression in which<
and>
would appear doubled in message
identifiers. - #143 fixed parsing
of<
and>
being part of the email address comment.
Full log
Total issues resolved: 18
- 73: Emails don't need to have a To: header thanks to @ulab
- 134: use strpos for fixed string matching thanks to @glensc
- 143: Fix and test ">" being part of email "comment". fixes #127 thanks to @glensc
- 156: fix regression: MessageId having double brackets thanks to @glensc
- 157: Update project path in
CONTRIBUTING.md
thanks to @glensc - 160: Fixes #73 : allow Message to not has "To" header thanks to @samsonasik
- 161: Protocol\Smtp cleanup thanks to @Slamdunk
- 171: Add PHPDoc comments thanks to @danielabyan
- 176: Fix a typo in the "Using folders" documentation thanks to @marclaporte
- 177: Add PHP 7.2 support thanks to @froschdesign
- 180: added missing new keyword thanks to @uikolas
- 181: Fix deprecated variant in idn_to_ascii thanks to @matbech
- 183: testCanBeEncoded fails thanks to @remicollet
- 184: Updated to php-coveralls/php-coveralls thanks to @webimpress
- 188: unfold before calling iconv_mime_decode thanks to @glensc
- 189: Add PHP 7.2 support thanks to @Slamdunk
- 190: PHPDoc:
Message#getBody()
can also return astring
thanks to @Slamdunk - 192: Use the INTL_IDNA_VARIANT_UTS46 idn_to_ascii variant thanks to @mtorromeo