How to open Gmail Compose Direct from one click Button Programatically Android
Start Code: This functionality is working. Just Copy it and Paste it. 

Intent intent =new Intent(Intent.ACTION_SEND); 
String[] recipients ={"testing@gmail.com"};
intent.putExtra(Intent.EXTRA_EMAIL, recipients); intent.putExtra(Intent.EXTRA_SUBJECT,"Feedback");
 intent.putExtra(Intent.EXTRA_TEXT,"Body of the content here..."); intent.putExtra(Intent.EXTRA_CC,"testing_Two@gmail.com"); 
intent.setType("text/html"); 
intent.setPackage("com.google.android.gm"); 
startActivity(Intent.createChooser(intent, "Send mail")); 

  Enjoy Code

Post a Comment

Previous Post Next Post