How do I send an email to an email address without an Ascii address, for example, I have adad @ ÄÖß.com as an email address and when I try to send an email to this email address using
sendTo="adad@ÄÖß.com";
MailMessage msg = new MailMessage();
msg.To.Add(sendTo);
msg.To.Add (sendTo) gives an error message "The specified line is not in the form required for the email address".
Have you guys come across this? Is it possible? If so, Any idea how I can get this to work?
source
share