肉肉肉肉肉肉 2016-11-29 14:36 采纳率: 0%
浏览 6323

javax.mail.AuthenticationFailedException: 异常

javax.mail.AuthenticationFailedException: 220 Ready to start TLS

,在windows上正常,部署到linux上异常

 String contest = "欢迎注册商城!";


        // 发送邮件通知

        // 创建Properties 类用于记录邮箱的一些属性
        final Properties props = new Properties();
        // 表示SMTP发送邮件,必须进行身份验证
        props.put("mail.smtp.auth", "true");
        //此处填写SMTP服务器
        props.put("mail.smtp.host", "14.18.245.164");
        //端口号,QQ邮箱给出了两个端口,但是另一个我一直使用不了,所以就给出这一个587
        props.put("mail.smtp.port", "587");
        // 此处填写你的账号
        props.put("mail.user", "1111111111@qq.com");
        // 此处的密码就是前面说的16位STMP口令
        props.put("mail.password", "qdasdqwdasd");

        // 构建授权信息,用于进行SMTP进行身份验证
        Authenticator authenticator = new Authenticator() {

            protected PasswordAuthentication getPasswordAuthentication() {
                // 用户名、密码
                String userName = props.getProperty("mail.user");
                String password = props.getProperty("mail.password");
                return new PasswordAuthentication(userName, password);
            }
        };
        // 使用环境属性和授权信息,创建邮件会话
        Session mailSession = Session.getInstance(props, authenticator);
        // 创建邮件消息
        MimeMessage message = new MimeMessage(mailSession);
        // 设置发件人
        InternetAddress form = new InternetAddress(
                props.getProperty("mail.user"));
        message.setFrom(form);

        // 设置收件人的邮箱
        InternetAddress to = new InternetAddress(user.getEmail());
        message.setRecipient(RecipientType.TO, to);

        // 设置邮件标题
        message.setSubject("欢迎注册商城");

        // 设置邮件的内容体
        message.setContent(contest, "text/html;charset=UTF-8");

        // 发送邮件
        Transport.send(message);
  • 写回答

1条回答 默认 最新

  • devmiao 2016-11-29 15:49
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器