1

我正在开发一个 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)));
4

1 回答 1

1

有谁知道怎么做?

编写您自己的电子邮件客户端,可能使用 Android 的 JavaMail 端口。

当您使用 时ACTION_SEND,您是在要求其他人的应用代表您的应用发送内容。但是,您不能强制其他应用程序执行任何操作,例如不向用户显示电子邮件正文。

于 2012-07-30T22:33:53.150 回答