I use C# code to send email. In some rare cases an invalid email address appears like
fréderique@gmail.com which is denied by SMTP server as non-ASCII email address.
I would like to 'normalize' this address from fréderique@gmail.com to frederique@gmail.com
I can, of course, write hardcoded map where I strictly define é => e etc but I would like to make it cleaner if possible.
Is there any .NET class for this?
Thanks