mail-parser v3.0.0
fedelemantuano
released this
03 Dec 13:12
·
225 commits
to develop
since this release
Highlights
- There are 2 docker images, for master and for develop
- It's possible more headers with the same name of RFC (in
from
case usefrom_
) - With
mail
property will be returned all mail headers, attachments and body, only if they aren'tNone
- Every property has object, JSON and raw part. So you can get mail as object with
.mail
, as JSON with.mail_json
, and as raw with.mail_raw
. - Added logging on stdout for command line.
⚠️ Breaking Changes ⚠️
This new release is not compatible with the previous. This version is all object oriented, the simple header is tokenized in every its parts. Example:
Reply-To: "VICTORIA Souvenirs" <[email protected]>
now becomes:
"reply_to": [
[
"VICTORIA Souvenirs",
"[email protected]"
]
],
- The method
parse_from_*
are removed. - The anomalies detection are removed.