Sending Email in Android using JavaMail API without using the default android app(Builtin Email app
- by Vinayak.B
Hi Folks,
I am trying to create a mail sending application in android, If I use
`Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND`);
This will launch the builtin application of android, I'm trying to send the mail on button click directly without using this app, Please any suggestions highly appreciated
Cheers,
Vinayak