I have been experimenting with deep linking to Google gMail directly from our webclient solution. The following seems to work:
//deep link to Google
var a = 'https://www.google.com/accounts/ServiceLoginAuth?';
var b = 'Email=';
var c = gmail_name;
var d = '&Passwd=';
var e = gmail_password;
var f = '&continue=';
var g = 'http://mail.google.com/mail';
var h = 'https%3A%2F%2Fgmail%2Egoogle%2Ecom%2Fgmail%3Fview%3Dcm%26fs%3D1%26tf%3D1#compose';
var i = '_self';
application.showURL(a + b + c + d + e + f + g, i);
//to deep link to Google compose (substitute h for g)
The “compose” option opens directly to a new outgoing gMail message. Now all we need is to place a contact’s e-mail address from our webclient solution into the outgoing e-mail. It would also be nice to be able to perform a deep link search to find all the e-mails sent to or received from a particular contact.
Does anyone know how to achieve this with webclient?
Dean Westover
Choices Software, Inc.