Hi, I'm executing action_send but I'm stopped by the application I'm using android 7 and with other versions it works but with this it stops.
String email = "[email protected]";
Intent intentMail = new Intent(Intent.ACTION_SEND, Uri.parse("mailto:"+email));
intentMail.setClassName("com.google.android.gm","com.google.android.gm.ComposeActivityGmail");
intentMail.setType("plain/text");
intentMail.putExtra(Intent.EXTRA_SUBJECT, "mails title");
intentMail.putExtra(Intent.EXTRA_TEXT, "Hi there, i love Myform app..");
intentMail.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]","[email protected]"});
startActivity(intentMail);