认为 me@there 有效。不需要 TLD 吗?
try
{
foreach (var email in addresses)
{
var addr = new System.Net.Mail.MailAddress(email);
}
}
catch (Exception)
{
return "Invalid email address";
}
认为 me@there 有效。不需要 TLD 吗?
try
{
foreach (var email in addresses)
{
var addr = new System.Net.Mail.MailAddress(email);
}
}
catch (Exception)
{
return "Invalid email address";
}