2

I'm building an address book application. I'd like to allow users to click on a contact in my application, and be directed to their yahoo or gmail webmail, to the compose page, with the "to" field populated with data that I supply. Is this possible?

Dylan Corriveau
  • 2,561
  • 4
  • 29
  • 36
morgancodes
  • 25,055
  • 38
  • 135
  • 187

1 Answers1

1

As for Yahoo I really don't know. For Gmail you can. Just use the bellow URL (changing variables accordingly).

https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=user@example.com

It was just yesterday that I asked a if anyone knew where to find all of Gmail's variables.

Community
  • 1
  • 1
Frankie
  • 24,627
  • 10
  • 79
  • 121
  • Sweet. Thanks. Is this officially supported by google api-style, or is it something that could change without notice? – morgancodes Sep 03 '10 at 15:13
  • @morgancodes I really don't know. I kind of hacked my way into it looking at the URL and checking what similar sites already do (including some browser extensions). Thus my question at http://stackoverflow.com/questions/3611937/gmail-url-variables – Frankie Sep 03 '10 at 16:07