2

我正在创建一个向用户发送邮件的应用程序。

但问题是当我使用 Transport.send(msg) 方法时,它显示以下错误:

com.sun.mail.smtp.SMTPSendFailedException: 530-5.5.1 Authentication Required.

我正在使用以下属性发送邮件。

        props.put("mail.transport.protocol", "smtp");
        props.put("mail.host", smtpHostName);
        props.put("mail.user", smtpUser);
        props.put("mail.password", smtpPass);
        props.put("mail.smtp.auth", smtpAuth == 1 ? true : false);
        props.put("mail.port", smtpPort);
        props.put("mail.smtp.starttls.enable", smtpTLS == 1 ? true : false);

请帮我解决这个问题。

4

2 回答 2

4

试试这个

props.put("mail.smtp.host", host);
props.put("mail.smtp.auth", "true");
props.put("mail.debug", "false");
props.put("mail.smtp.port", port);

在创建会话时使用此身份验证代码

l_session = Session.getInstance(props,
                new javax.mail.Authenticator() {

                    protected PasswordAuthentication getPasswordAuthentication() {
                        return new PasswordAuthentication(username, password);
                    }
                });

        l_session.setDebug(true);
于 2012-06-25T12:30:03.540 回答
1

我们的环境在 WebSphere 7 下运行。为了支持安全 smtps,打开 SMTPS AUTHorization 的正确变体是:

“mail.smtp s .auth=true”

实际上,根据反编译的来源,在授权邮件会话之前,WebSphere 会检查是否有一个属性组成为:“mail.”+ transportProtocol +“.auth”设置为“true”。这有助于我通过 gmail 发送电子邮件。

于 2013-12-19T10:57:30.413 回答