我在 android 中开发了一个应用程序,我应该使用 Intent 从该应用程序发送一封电子邮件。我可以发送电子邮件,但我不确定电子邮件是否已发送 - 因为我无法知道已发送电子邮件的确认信息。
请为我找到一个解决方案,以确认电子邮件已在某种警报中发送。
代码 :
Intent email = new Intent(Intent.ACTION_SEND); email.setType("plain/text");
email.putExtra(Intent.EXTRA_EMAIL, new String[] {emailId});
email.putExtra(Intent.EXTRA_SUBJECT, "Documents"); email.putExtra(Intent.EXTRA_TEXT, "Please find attachment");
email.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(myFile));
startActivity(Intent.createChooser(email , "Send email..."));