when I launch application service to send a email,is it possible to specify a "receiver" and "subject" in advance?
my code is below here,it can launch email composer,but receiver is empty and subject is "Subject" for default .
var service = new tizen.ApplicationService("http://tizen.org/appcontrol/operation/send", null, "*/*");
try {
tizen.application.launchService(service, null, this.onSuccess, this.onError, this.serviceReply);
} catch (exc) {
alert("launchService exc: " + exc.message);
}