0

我找到了很多关于为电子邮件配置 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|#]
4

1 回答 1

1

我已经解决了这个问题。解决方案相当简单。在 Glassfish 中配置 Javamail 资源时,在 JNDI 名称上使用“mail/”前缀很重要。我以为 Glassfish 添加了这个。我通过从上面的代码中删除注入并在 try catch 中包含 JNDI 查找找到了解决方案:

try {
    InitialContext ctx = new InitialContext();  
Session session = (Session) ctx.lookup("mail/MyEmail"); 
 Message msg = new MimeMessage(session);
于 2013-03-26T05:54:44.883 回答