I am trying to use intent to send an email from my application, but the To field of the email will not be filled. If I add code to fill in a topic or text, they work fine. Just the To field will not be filled.
I also tried changing the type to "text / plain" and "text / html", but I have the same problem. Can anyone help?
public void Email(){ Intent emailIntent = new Intent(Intent.ACTION_SEND); emailIntent.setType("message/rfc822");
The email client I'm trying to use is Gmail
android android-intent
user Feb 01 2018-12-12T00: 00Z
source share