I need a script that would help a client submit a form in either hotmail or gmail. here is my current script that works in Outlook.
var oDoc = event.target;
oDoc.mailDoc({
bUI: true,
cTo: fldTo.rawValue,
cSubject: fldSubject.rawValue,
cMsg: fldMessage.rawValue
});