1

I am checking the validation for email using regular expression its working fine for me. What if the user give some dummy mailid in the textbox?

How can i check whether the entered mail is valid or not without telling the user to login to that mail and click subscribe link?

Is it possible to check like this..

Thanks in advance

2
  • Why don't you want to use the send/reply route? Commented Dec 4, 2010 at 10:19
  • See stackoverflow.com/q/201323/2291 Commented Nov 16, 2011 at 21:22

3 Answers 3

4

How can i check whether the entered mail is valid or not without telling the user to login to that mail and click subscribe link?

You can not. Point. Thanks to spammers no email server wil lbehave. Some will send you "user doesn ot exist" errors, some will even swallow them.

Plus, legally, youalso have to make sure the subscriber actually OWNS the mailbox, and is not entering someone else email.

Sign up to request clarification or add additional context in comments.

Comments

3

The only way which i think is

Send an email to the specified email address , if you don't got a bounced email , email is valid provided by user

Comments

2

Without verifying that the user can actually read email, you can't ensure it's that user's real account.

Many domains accept all mail, and use it for spam analysis on invalid accounts, and a user can easily provide 'real' accounts they don't control. (eg: [email protected])

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.