mailparser
mailparser copied to clipboard
Commas in display names not parsed correctly
If an email address's displayName contains commas (ex: Joe Foo, PhD) mailparser will try to split it at each comma, resulting in multiple AddressObjects like so: [ { "address": "", "name": "Joe Foo" }, { "address": "[email protected]", "name": "PhD" } ]
I've had incoming messages with similar display names come through and cause issues because of this.