Email issue

We are using the following code to validate if email address is valid or not


private bool IsValid(string email)
{

Aspose.Email.Verify.EmailValidator ev = new Aspose.Email.Verify.EmailValidator();
Aspose.Email.Verify.ValidationResult result;

ev.Validate(email, out result);

if (result.ReturnCode == ValidationResponseCode.ValidationSuccess)
{
return true;
}
else
{
return false;
}
}


But it is giving us wrong result in some cases. Say e.g if we pass try@gmial.com or trybsj@domain.com, it is returning us true which means email address is valid but it is clearly invalid email address.

Please help us on it.

Hi Max,


Thank you for writing to Aspose support team.

This issue is re-produced here and logged under Id: EMAILNET-35258 for further investigation by the product team. You will be automatically notified once any update is received in this regard.