HomeCommunityControl GalleryCommunityForumsEmailVerify.NET - Email validation component for .NET

EmailVerify.NET - Email validation component for .NET



(2) Submit a Review

18,290 Downloads

88,789 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

Finally something that really works

Reviewed by: epik on Thursday, February 23, 2012

5 Stars

Well if I know that the email address validation process was so hard I never started these crazy path. I lost my mind searching for the right regex and risking that my company domain could be included on a spam black list because we didn't know the right ways to massively check for email addresses. Luckily EmailVerify exists and makes its job in a great way. Thanks!

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.