我想在我即将推出的 android 应用程序中提供电子邮件功能。你能告诉我在哪里可以获得一些关于如何从 android 应用程序发送电子邮件的好的源代码示例。提前致谢。
问问题
5959 次
2 回答
4
K9 mail 是一个优秀的开源、全功能的安卓电子邮件客户端。它支持 POP3、IMAP 和 Exchange 帐户。如果您研究它的来源,您会发现制作 android 电子邮件应用程序所需的一切。它托管在 Github 上:
这是 google play store 上的免费应用程序:
https://play.google.com/store/apps/details?id=com.fsck.k9&hl=en
于 2012-10-21T09:09:37.610 回答
0
如果您只是希望用户向您发送邮件,您可以使用此代码。它使用 emailIntent
//letting the user write a email to us
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
new String[] { "abc@xyz.com" });
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"subject of mail");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"Insert your mail content");
MainMenuActivity.this.startActivity(Intent.createChooser(
emailIntent, "Send mail..."));
于 2012-10-21T12:11:55.173 回答