.NET Email Verifier Component
| Author |
|
| Company |
Safabyte |
| Source Code Available |
No |
| License Type |
Free to try |
| Submitted On |
August 18, 2008 |
| Updated on |
September 05, 2008 |
| .NET Framework |
2.0, 3.0 |
| Cost |
$99 |
Description
Safabyte SfbEmailVerifier is a versatile component for validating email-addresses. It allows you to add email address validation to both .NET WinForm and WebForm applications. Developers are able to detect invalid email through validation syntax, check bad or accepted email addressed with Black List and White List. By setting validation level to its maximum level, email address will go through 6 checking levels: address syntax, black and white lists, Mail Exchange records, Smtp Connection and Mail box. Furthermore, developers can verify email-addresses by using multiple-threads through the system thread pool.
Syntax Example
try
{
string[] list = new string[3] { "test1@testdomain.com", "test2@testdomain.com", "test3@testdomain.com" };
em.VerifyEmails(list);
}
catch (DnsException exc)
{
Log("Dns Exception: " + exc.Message);
}
catch (EmailVerifierException exc2)
{
Log("EmailVerifierException: " + exc2.Message);
}Screenshots
Reviews
Submit a review