gpt4 book ai didi

java - 使用 GWT Java 发送电子邮件

转载 作者:行者123 更新时间:2023-12-01 11:14:03 25 4
gpt4 key购买 nike

我一直在 stackoverflow 中查看电子邮件解决方案,并尝试使用以下解决方案:

        EmailTask email = new SimpleEmail();
//Production
email.setHostName("mail.hostname.net");
email.setSmtpPort(25); //No authentication required
//Test
// email.setHostName("smtp.googlemail.com");
// email.setSmtpPort(587); //Authentication required
// email.setAuthenticator(new DefaultAuthenticator("me@gmail.com", "mypwd"));

email.setTLS(true);
email.setFrom("ATA@hostname.net");
email.setSubject("New Award Tracking Application account created.");
email.setMsg("Please set up a new Award Tracking Application account for: " + account);
email.addTo(to);
email.send();
System.out.println("Mail sent!");

在第一行(EmailTask​​ email = new SimpleEmail();)我收到错误

SimpleEmail cannot be resolved to a type

我输入代码时按照快速修复导入了 import org.apache.tools.ant.taskdefs.email.EmailTask​​; 。我还应该使用其他库吗?

任何帮助将不胜感激。

问候,

格林

最佳答案

在您的类(class)路径中添加Commons Email https://commons.apache.org/proper/commons-email/

检查user guide举一个简单的例子。

SimpleEmail

关于java - 使用 GWT Java 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32043725/

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