javax.mail.MessagingException: Could not connect to SMTP host: smtp.163.com, port: 465, response: -1

"本文探讨了在Java中遇到的邮件发送失败的问题,主要表现为SMTP连接错误。问题的根源在于SSL配置和端口设置。提供了两种解决方案:一是启用SSL配置,通过添加`props.put("mail.smtp.ssl.enable", true);`;二是更改发送端口,从465改为25。这些方法已通过测试并证实有效。"
摘要由CSDN通过智能技术生成

1.用以下代码,邮件发送测试失败

private static Session getSession() {
        Properties props = new Properties();
        props.put("mail.smtp.host", HOST);//设置服务器地址
        props.put("mail.store.protocol" , PROTOCOL);//设置协议
        props.put("mail.smtp.port", PORT);//设置端口

以下代码加在这个附近就行

props.put("mail.smtp.ssl.enable", true);


        props.put("mail.smtp.auth" , true);
/*        
        Authentication authentication = new Authentication(userName, userPwd); 
        Session session = Session.getDefaultInstance(props,authentication);*/
        Authenticator authenticator = new Authenticator() {

            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(FROM, PWD);
            }

        };
        //Authenticator authentication = new Authenticator("13631785646@136.com", "admin671435..."); 
        Session session = Session.getDefaultInstance(props , authenticator);

        return session;
    }

 

 

2.解决办法

方法一:加上以下这局代码【亲测有效】

props.put("mail.smtp.ssl.enable", true);

 

方法二:修改发送端口

将465端口改为25端口

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

疯狂行者

你的鼓励将是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值