gpt4 book ai didi

android - 如何向多个电子邮件帐户发送一封电子邮件?

转载 作者:行者123 更新时间:2023-11-29 00:41:24 25 4
gpt4 key购买 nike

我可以从我的 android 应用程序发送电子邮件。但是我只能向一个帐户发送电子邮件。我试图以多种不同的方式修改代码,但我无法存档以将电子邮件发送到多个帐户。

我正在使用这段代码:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final Button send = (Button) this.findViewById(R.id.send);
send.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method stub

try {
GMailSender sender = new GMailSender("username@gmail.com", "password");
sender.sendMail("This is Subject",
"This is Body",
"user@gmail.com", // This is not working
"user@yahoo.com"); //This is working
} catch (Exception e) {
Log.e("SendMail", e.getMessage(), e);
}

}
});

}

这是完整的代码:Sending Email in Android using JavaMail API without using the default/built-in app

谢谢。

最佳答案

Intent actionIntent = new Intent(Intent.ACTION_SEND); 
actionIntent.setType("plain/text");
String emails ="";
for (int i = 0; i < emailAddress.size(); i++) {
emails=emails+";"+emailAddress.get(i);
}
String emailAddressList[]={emails};
actionIntent.putExtra(Intent.EXTRA_EMAIL, emailAddressList);
startActivity(actionIntent);

这适用于我启动电子邮件应用程序并附加所有收件人地址您可以这样添加主题: actionIntent.putExtra(Intent.EXTRA_SUBJECT, "你的主题");

希望对您有所帮助。问候,亚龙

关于android - 如何向多个电子邮件帐户发送一封电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9111897/

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