I'm working on an application where we integration with google docs via the API. We share these documents via the API with various members (email addresses) registered in the system. We'd like to know if a member (email address) has a google account acceptable email address. There seems to be three different ways an email address can be used as a google account:
- regular gmail email address (e.g., joe@gmail.com)
- google apps backed email address (e.g., joe@somecompany.com where somecompany.com uses google apps)
- use a plain old email address (e.g., joe@yahoo.com)
When first developing the solution I was using an MX record lookup on the domain name to see if it was backed by google. This works great for #1 and #2, but doesn't work for #3. We didn't realize that a user can sign up for a google account and just use their "regular" email address. Is there any way that we can determine if an email address is a valid google account email address so that when that user logs into google using that email address they have access to google docs?