gpt4 book ai didi

android - 如何将电子邮件发送到特定的电子邮件?

转载 作者:搜寻专家 更新时间:2023-11-01 09:08:56 25 4
gpt4 key购买 nike

我有以下条件: enter image description here

如何在 submitButton clicklistener 上向 example@mail.com 发送电子邮件?

submitButton.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
//how to send email ??

}
});

帮助!

最佳答案

非常简单。在您的 onClick 方法中,只需创建并填充以下 Intent

Intent i = new Intent(android.content.Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"recipient@example.com"});
i.putExtra(Intent.EXTRA_SUBJECT, "subject");
i.putExtra(Intent.EXTRA_TEXT , "body");
startActivity(Intent.createChooser(i, "Email:"));

关于android - 如何将电子邮件发送到特定的电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9832450/

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