Trivial: Get confirmation of email sent in android

后端 未结 4 475
灰色年华
灰色年华 2020-11-30 13:12

After starting an email intent how can I get confirmation that the email has sent or there has been an error back into the activity it was called from?

              


        
4条回答
  •  北海茫月
    2020-11-30 13:30

    You can NOT do this.

    ACTION_SEND does NOT have any output as a result you always get the default value which is RESULT_CANCELED.

    Also you can NOT check it with Intent data coming back because it is always null either mail send or discard.

提交回复
热议问题