0

I am sending an email with attachment using the code provided here: https://stackoverflow.com/a/4918531/1594522

The sending is working fine. Now, I want to notify my application once the sending of email finished. Is there a way to do this?

Thank you in advance! :)

Community
  • 1
  • 1
kdroider
  • 731
  • 5
  • 20

1 Answers1

0

Call startActivityForResult instead of startActivity, then you can implement your own onActivityResult method that will get called when the email activity is complete.

spartygw
  • 3,289
  • 2
  • 27
  • 51