我找到了很多关于为电子邮件配置 Glassfish 的参考资料,但是我无法解决我自己的问题,我希望有人能提供帮助。
我已经在 Glassfish 3.12 控制台中使用邮件主机、用户、发件人地址和描述配置了 JavaMail 会话。传输协议设置为 SMTP,我添加了一个 mail.smtp.host(和 mail.smtp.auth=false)属性。
我用来发送邮件的代码如下:
public class JndiMail {
@Resource(name = "mail/[my-email]")
private Session mailSession;
public void sendMessage() {
Message msg = new MimeMessage(mailSession);
try {
msg.setSubject("[app] Email Alert");
msg.setRecipient(RecipientType.TO,
new InternetAddress("user@domain",
"User name"));
msg.setText("Hello ");
Transport.send(msg);
}
catch(MessagingException me) {
System.out.println(me.toString());
}
catch(UnsupportedEncodingException uee) {
}
}
}
每次应用程序发送电子邮件时,我都会收到一条日志消息,说明本地主机已拒绝该电子邮件。我正在尝试使用远程交换服务器 - 而不是 localhost。我不明白为什么远程电子邮件服务器没有被访问?我意识到这应该是相当直截了当的,所以如果我遗漏了什么,我深表歉意。
这些是 Glassfish 日志:
[#|2013-03-26T10:00:39.334+1100|INFO|glassfish3.1.1|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=29;_ThreadName=Thread-2;|DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]|#]
[#|2013-03-26T10:00:39.334+1100|INFO|glassfish3.1.1|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=29;_ThreadName=Thread-2;|DEBUG SMTP: useEhlo true, useAuth false|#]
[#|2013-03-26T10:00:39.334+1100|INFO|glassfish3.1.1|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=29;_ThreadName=Thread-2;|DEBUG SMTP: trying to connect to host "localhost", port 25, isSSL false|#]