HomeCommunityControl GalleryCommunityForumsEmailVerify.NET - Email validation component for .NET

EmailVerify.NET - Email validation component for .NET



(1) Submit a Review

18,283 Downloads

85,122 Views


Description


EmailVerify.NET is a powerful Microsoft .NET software component that verifies e-mail addresses with various tools, including:

- Advanced syntax verification, according to IETF standards (RFC 2821 and RFC 2822, among others)
- DNS validations, including MX record(s) lookup
- Disposable e-mail address (DEA) validation
- SMTP connection and availability checking
- Mailbox existence checking, with greylisting and temporary unavailability support
- Catch-all testing

It is written completely in managed code (C#) and is compliant with Common Language Specification (CLS), so it can be used with any other .NET language, including VB.NET, C++/CLI, J#, IronPython, IronRuby, and F#.

Need more information? Check out our website! ;)

For more information about EmailVerify.NET please visit our website at http://www.emailverify.net or contact our customer support, we will be more than happy to assist you. Thanks!

Syntax Example

var verifier = new EmailVerifier(); var result = verifier.Verify("john@example.com", VerificationLevel.Mailbox); if (result.IsSuccess) { Console.WriteLine("The mailbox exists!"); } // Way more code samples available at http://www.emailverify.net

Reviews

Submit a review

Great email validation component

Reviewed by: scottdavis76 on Saturday, November 06, 2010

5 Stars

EmailVerify.NET is really a great product. We have just finished one of our ASP.NET based web portal, where EmailVerify.NET is a fundamental component for validating email addresses during user registration. The validation model is truly powerful and the component allows for full flexibility and customization of the verification process. In addition to that, it is fast and allows us to retrieve lots of details about the target mail exchangers, DNS records, mailboxes existence and so on. As a developer for more than 15 years I especially appreciated the excellent designed programs. Looking forward to experimenting with EmailVerify.NET in the future to deliver to our customers applications with unique email validation capabilities.