I want to validate an email validation of type 'abc@xyz.com.com' Should show an error message if they enter invalid domain name. Would be very grateful for your help.
|
closed as not a real question by casperOne♦ Mar 30 '12 at 18:57
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I find that trying to validate an e-mail adress thoroughly is too much work and I tend to use something along the lines of /\A[^@]+@[^@]+\z/. Either way you will still have to send a confirmation e-mail in order to verify that the adress is in use. Also see this page about writing a regex for an e-mail address. Additionally, I think in a lot of cases where a user mistypes an e-mail address they still type an address in valid format (on top of that, a malicious user can always write e.g. example@example.com and get away with it) |
|||
|
|
|
I think you firstly need to validate email by regexp then query DNS to see if host part of the email address is valid. Here is example code that makes that cheks.
|
|||||
|
|
It is very easy to check username till @ operator but, i think, we can not check domain name is valid or not. because, you knew thousands of domain today. tomorrow, any organization or anything else will add more domains then how can we check for that. The only thing is that, we can make restriction on length. if i am wrong please correct me.. would be grateful for help..thank you. |
|||||
|
|
Ok, i am not sure why most here skips this, but there's a function called filter_var which can receive a parameter to verify if the string is a valid email. It does not check if the domain exists or something else. Also here you can find the available filters you can use for validation. If you need to filter domains, there is a easy way to extract the domain from the email and disallow those that you don't want. You can do a easy check if the requested domain exists, if that is what you like. |
|||
|
|