Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trivial: Get confirmation of email sent in android

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?

        Intent emailIntent = new Intent(Intent.ACTION_SEND);
        emailIntent.setType("png/image");

        String subject = "Email Subject";

        String body = "Message Body"; 

        emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
        emailIntent.putExtra(Intent.EXTRA_TEXT, body);
        emailIntent.putExtra(Intent.EXTRA_STREAM,
                Uri.parse("file:///sdcard/" + IMAGE_FILENAME));

        startActivity(Intent.createChooser(emailIntent, "Send email...")); 

        //Here I need to do something on a successfully sent email

Maybe start activityForResult? But what result should I expect back if any?

like image 569
SamRowley Avatar asked Mar 29 '11 10:03

SamRowley


3 Answers

That really depends on the app that is launched by your Intent. It could be the Gmail app, it could be the Email app, or it could be any third-party app. Because of this, there is no 100% reliable way to determine whether the user actually pressed Send or not.

The only thing you can do is check if the Gmail and Email apps return anything relevant when called via startActivityForResult and rely on that. But beware that is not reliable because, again, there could be third party apps. Also, since these apps do not specify publicly what they return, they might change that at some point without any notice.

like image 90
Felix Avatar answered Oct 06 '22 09:10

Felix


you cannot get any useful resultcode from an email intent. onActivityResult always return 0 as soon as sending starts or sending is canceled.

Additionaly if you attach files, onActivityResult is called BEFORE those files are read.

like image 42
thomas Avatar answered Oct 06 '22 09:10

thomas


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.

like image 44
Code.Town Avatar answered Oct 06 '22 07:10

Code.Town