Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
I am using an intent to open an Activity and allow the user to send an email. Is it possible to be notified of the result after the user is done with this activity?
Fro example be notified that email was sent, or cancel was clicked.