We are trying to bulk import contacts with CSV as follows:
Import-Csv .\ExternalContacts.csv|%{New-MailContact -Name $_.Name -DisplayName $_.Name -ExternalEmailAddress $_.ExternalEmailAddress -FirstName $_.FirstName -LastName $_.LastName}
We get an error because some contacts have the same proxy addresses attribute. There are multiple doctors with the same address (ie: 5555555555@domain.com).
How would one fix this or work around it?