I have tried it … but when I submit the form it goes to the compose mail … I want to send the mail only by clicking the submit button… please help me…
Intent mailintent = new Intent(android.content.Intent.ACTION_SEND);
mailintent.setType("text/plain");
mailintent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[]
{"amitk.123@gmail.com" , "ankush.123@gmail.com"});
mailintent.putExtra(android.content.Intent.EXTRA_SUBJECT, "info...");
startActivity(mailintent);
and
<uses-permission android:name="android.permission.INTERNET" />
in manifest file.
I think you are trying to send Email programmatically, without open Email Composer.
If so you can check this link
Hope this helps