In my Android app, i’ve inserted an ACTION_SEND intent.
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, new String[] { emailTo });
intent.putExtra(Intent.EXTRA_CC, new String[] { emailCC });
intent.putExtra(Intent.EXTRA_SUBJECT, defaultSubject);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, body);
Is there a way to get the recipient filled by the user after he sent the mail ?
Thanks.
No, sorry. You do not get any results from an
ACTION_SENDoperation, including any changes the user may have made to the recipient list of an email.