UPDATED: improving email address splitting for common comma case

This commit is contained in:
TheAvgJojo 2022-08-05 15:13:21 -04:00
parent 9524963da6
commit 1e37e91eda
3 changed files with 17 additions and 1 deletions

View file

@ -13,6 +13,11 @@ three@example.com,
two@example.com,
one@example.com
}
{
three@example.com,
two@example.com,
one@example.com
}
one@example.com
[one@example.com, two@example.com, three@example.com, one@example.com]
{
@ -26,9 +31,17 @@ john.smith@email.com
john.smith@email.com,
jane.doe@email.com
}
{
"Smith, John" <john.smith@email.com>,
"Doe, Jane" <jane.doe@email.com>
}
john.smith@email.com
[john.smith@email.com, jane.doe@email.com]
{
john.smith@email.com,
jane.doe@email.com
}
{
"Smith, John" <john.smith@email.com>,
"Doe, Jane" <jane.doe@email.com>
}