You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: