|
-
May 13th, 2010, 01:46 PM
#1
Thread Starter
New Member
Email Verifier
Hi I would like to know if there is any way that you can verify that a email address actually exists like using this tool: http://verify-email.org/. Can someone please help me with this i'am new to porgramming in general and would like to wirte an application that does this in visual basics.
Thanks Please help me!
-
May 13th, 2010, 01:48 PM
#2
Registered User
Re: Email Verifier
A small search resulted in the following code:
Code:
Function IsEmail(Byval email as string) as boolean
Static emailExpression As New Regex("^[_a-z0-9-]+(.[a-z0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,4})$")
return emailExpression.IsMatch(email)
End Function
-
May 13th, 2010, 01:49 PM
#3
Thread Starter
New Member
Re: Email Verifier
I know how to make sure it's in the correct format but I want to actually see if it exists. But thanks for your help anyway
-
May 13th, 2010, 01:51 PM
#4
Registered User
Re: Email Verifier
Oh I'm sorry, I misread. I don't know the solution I'm afraid.
-
May 13th, 2010, 01:53 PM
#5
Thread Starter
New Member
Re: Email Verifier
me neather, but I need it so bad. Got a company that wants me to write a program to verify all their emails before they get sent.
-
May 13th, 2010, 01:59 PM
#6
Registered User
Re: Email Verifier
This might be interesting:
http://vbcity.com/forums/t/148422.aspx
but it provides no solution.
-
May 13th, 2010, 02:05 PM
#7
Thread Starter
New Member
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|