I would like to send an eMail out of my app but directly out of my app without opening an modal eMail window.
I found some examples by using native code and calling an modal eMail window by using the cordova exec function and passing the parameters like:
var args = {
subject: 'Subject',
body: 'message',
toRecipients: 'recipients'
};
cordova.exec(null, null, "EmailComposer", "showEmailComposer", [args]);
A really simple and nice way.
But I would like to send the eMail directly out of my application like the native app invy is doing it.

Do somebody know how to do it or did somebody hear about something like that?
Thanks in advance
yves