使用Intent从Android发送电子邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Intent从Android发送电子邮件相关的知识,希望对你有一定的参考价值。

  1. Intent i = new Intent(Intent.ACTION_SEND);
  2. //i.setType("text/plain"); //use this line for testing in the emulator
  3. i.setType("message/rfc822") ; // use from live device
  4. i.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});
  5. i.putExtra(Intent.EXTRA_SUBJECT,"subject goes here");
  6. i.putExtra(Intent.EXTRA_TEXT,"body goes here");
  7. startActivity(Intent.createChooser(i, "Select email application."));

以上是关于使用Intent从Android发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

使用 Android Intent.ACTION_SEND 发送电子邮件

使用 Android Intent.ACTION_SEND 发送电子邮件

使用 Intent 的 Android 多个电子邮件附件

发送的电子邮件客户端中不存在 Android 发送电子邮件

如何直接从Android应用程序发送电子邮件而不显示设备的默认电子邮件形式?

使用意图发送到发件箱 Android 的电子邮件