| Author |
|
| Company |
Info2000 |
| Source Code Available |
No |
| License Type |
Free |
| Submitted On |
December 21, 2008 |
| Updated on |
January 06, 2009 |
| .NET Framework |
2.0 |
| Cost |
Free |
Description
DF_MailStuff is a freeware .NET component useful in any circumstances you need to validate/check email address input by the user.
DF_MailStuff is also much more:
isEmailValid: use this method for validating email address checking syntax (even bad words) and/or validating domain (syntax check, dns lookup, top domain check, MX check, anonymous domain check, email existing against remote smtp server)
catchEmails: use this method for retrieving all email addresses contained into a text
DF_MailStuff returns detailed error codes
No external references but .Net 2.0 framework: just download ad use it
Syntax Example
Dim ms1 As New MailStuff
ms1.checkCommonInvalideMailAddress = True
ms1.lookUpWhoisDomain = False
ms1.lookUpDNSDomain = True
ms1.contactRemoteSMTP = Enums.smtpFilter.True
ms1.Ignore_ERR_REMOTESMTP_BLACKLISTED = True
ms1.XMLDataPath = "D:\DF_MailStuff\Sample\WindowsApplication1\Data\data.df_mailStuff.xml"
Dim result_Test1 As INFO2000.DF_MailStuff.Net.Enums.Results = ms1.isEmailValid(mailAddressToCheck)
If result_Test1 <> Enums.Results.OK Then
MsgBox("Mail address not valid: " & result_Test1.ToString)
End If
Reviews
Submit a review
Test on field
Reviewed by: Domy Ferraro on Sunday, December 21, 2008
5 Stars
ok...I test it (but also created it ;-) and it works fine...just invite you to try it and give some feedback for improving.
Thanks