Is there any way to verify in Java code that an e-mail address is valid. By valid, I don\'t just mean that it\'s in the correct format (someone@domain.subdomain), but that\'
Apache commons provides an email validator class too, which you can use. Simply pass your email address as an argument to isValid method.