I am developing a system where any user can send his personal information like name, contact no and email in a form. There will be another portal from which we can retrieve those data and process. I am using Java web Technology in this regard.
Now my question is about the process I can validate an email address. This not only means whether the email address is badly formatted but also the availability of that email id.
That means if I input "abc@efg.hijk" which is completely well-formatted email id, but my system will check whether such an email address actually exists or not. If it exists I will store it in the database.
Thanks in advance for your support.