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
  • 4,206
  • 6
  • 35
  • 58

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
  • 986,068
  • 189
  • 2,389
  • 2,491