I am using below code to launch the email composer.
Intent intent = new Intent(Intent.ACTION_SEND);
startActivity(Intent.createChooser(intent, email_chooser_title));
After launches the email composer , when the user hits on the "Send" button , I want execute some of my code.
Pl. let me know how can I get that notification.
thanks.