0

I need to open the send mail intent(Send Email Intent) and know if the user has really sent the email.

The feature is a "Invite your friend to use the app" and I need to let the user inform the address to send the email.

The approach of using send mail intent is the better because the user can edit the e-mail subject and body and use his prefered email client.

But if there is no way to know if the user has really sent the e-mail, I will embed the e-mail client inside my app.

Thanks.

Community
  • 1
  • 1
jonathanrz
  • 3,966
  • 6
  • 33
  • 55

1 Answers1

1

I need to open the send mail intent(Send Email Intent) and know if the user has really sent the email.

ACTION_SEND does not offer a result, so there is no requirement for any ACTION_SEND implementation to tell you what specifically was done with the data the user elected to share.

CommonsWare
  • 954,112
  • 185
  • 2,315
  • 2,367