In my app, I'm creating an intenet to send an email... it looks like this
final Intent emailIntent = new Intent(Intent.ACTION_SEND)
.putExtra(Intent.EXTRA_EMAIL, new String[]{mBuilder.mEmail})
.putExtra(Intent.EXTRA_SUBJECT, mBuilder.mSubject)
.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(getBody()))
.putExtra(Intent.EXTRA_STREAM, zipUri)
.setType("application/zip");
mBuilder.mContext.startActivity(Intent.createChooser(
emailIntent, mBuilder.mContext.getString(R.string.send_using)));
I want to know if it's possible to know if the email was actually sent or not, so I can perform some actions after that happens.
If so, please explain me how and if possible add a code snippet, please.
Thanks in advance.