|
-
Sep 14th, 2012, 06:03 PM
#1
Thread Starter
Member
Email Varification
Hello,
I'm making a program, in wich I need to varify an email. Not by format(regular expressions), but if it actualy exists or not.
Is this possible without using a special library or dll? Can it be done with normal objects like SmtpClient, TcpClient, methods in System.Net?
Thank you for your time,
-suzi9spal
-
Sep 14th, 2012, 06:47 PM
#2
Re: Email Varification
A quick google search brought me here. It imports System.Net
-
Sep 14th, 2012, 11:03 PM
#3
Re: Email Varification
Seems like the only way to truly verify an email address is send an email to it and make the user respond to that email.
-
Sep 15th, 2012, 02:42 AM
#4
Re: Email Varification
 Originally Posted by DataMiser
Seems like the only way to truly verify an email address is send an email to it and make the user respond to that email.
Not necessarily, I've seen sites that take send emails for registration refuse invalid email addresses presumably before sending them.
Here is a site that can actually do it. They even show portions of the SMTP protocol transmissions so that may give clue as to how its achieved.
-
Sep 15th, 2012, 09:34 AM
#5
Hyperactive Member
Re: Email Varification
There are several ways to authenticate an email address, from simple format to actually verifying the server exists and down to the email address exists on said server.
-
Sep 15th, 2012, 11:14 AM
#6
Re: Email Varification
Yes, my point was that even if a valid email address is given it is not an indication that it is the valid email address of the person providing it so it really depends on the level of validation you are looking for. If you want to be sure that the user entered the correct email address then the only way I know of to confirm is by receiving a response from that address.
-
Sep 15th, 2012, 11:21 AM
#7
Re: Email Varification
That's why most sites send an activation link when you sign up. If you typed in the wrong valid address then you're screwed. I don't think there is a way to get around that other than vigilance by the user typing the address.
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
|