Reputation: 621
On a social/user based websites, where user registration is required, why it is important(or general trend) to validate the account (by sending confirmation link to the email). If during the registration process, a good captcha system (for example recaptcha) is used, Is there still need to use email validation? What advantage it gives?
Upvotes: 2
Views: 581
Reputation: 395
Apart from what Kev already stated, the e-mail verification can prove useful for two additional reasons:
Upvotes: 0
Reputation: 119826
Email confirmation prevents miscreants from maliciously subscribing other people to sites with content they're not interested in.
Any reputable site that requires registration will ensure that the owner of the email address actually does want to subscribe/register for their services and content.
This is done by verifying that the supplied email address is being used legitimately by way of an email containing a confirmation/verification link that must be clicked to complete the registration.
Such a registration system would typically allow up to 24 hours for the verification to be completed, otherwise the pending registration will be deleted.
This permits recipients who accidentally or otherwise receive one of these emails ignore the fake/unintended/mistaken registration and if necessary contact the site owners if there is evidence of malicious intent.
Upvotes: 2
Reputation: 64419
It validates the email account for one: checking if the email supplied is actually a real email, and the user who made the account (and knows the password) can actually use that email address.
Upvotes: 0