我正在开发一个 android 应用程序,我想发送一封电子邮件。
下面的代码工作正常,但我需要特别的一件事……</p>
此代码在用户选择电子邮件应用程序选项后,将打开显示电子邮件正文的所选客户端,让他点击发送。
问题是我想在电子邮件正文中发送密码。因此,任何人都可以单击重新发送按钮,无需发送即可轻松查看密码。
我想发送一封电子邮件而不显示正文,或者只是发送而不显示电子邮件应用程序选项……(我已经保存了目标电子邮件)。
有谁知道怎么做?
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("message/rfc822");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] { mailRecover });
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, text);
App.this.startActivity(Intent.createChooser(emailIntent, getApplicationContext().getString(R.string.send_password_recover)));