gpt4 book ai didi

android - 如何使用 android studio 编写代码来发送电子邮件

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:36:39 25 4
gpt4 key购买 nike

我打算使用 android studio 开发一个 android 移动应用程序,用户可以在其中提供电子邮件地址和密码。然后该密码应该发送到提到的电子邮件地址。任何机构都可以共享任何代码 fragment 来执行此操作吗?

最佳答案

如果您想在后台发送电子邮件,请参阅 here

如果用户在屏幕上等待,请使用以下方法:

protected void sendEmail() {
Log.i("Send email", "");

String[] TO = {"someone@gmail.com"};
String[] CC = {"xyz@gmail.com"};
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setData(Uri.parse("mailto:"));
emailIntent.setType("text/plain");


emailIntent.putExtra(Intent.EXTRA_EMAIL, TO);
emailIntent.putExtra(Intent.EXTRA_CC, CC);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Your subject");
emailIntent.putExtra(Intent.EXTRA_TEXT, "Email message goes here");

try {
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
finish();
Log.i("Finished sending email...", "");
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(MainActivity.this,
"There is no email client installed.", Toast.LENGTH_SHORT).show();
}
}

关于android - 如何使用 android studio 编写代码来发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28546703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com