我用javamail发送带附件邮箱.接收和发送的邮箱都是阿里邮箱.我的配置如下
Properties props = new Properties(); // 参数配置
props.setProperty("mail.transport.protocol", "smtp"); // 使用的协议
props.setProperty("mail.smtp.host", "smtp.lianshangche.com"); // 发件人的邮箱的 SMTP 服务器地址
props.setProperty("mail.smtp.auth", "true"); // 需要请求认证
我在本地win10环境是没问题.但是把war包放到阿里云服务器上却报错了,错误如下
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: smtp.lianshangche.com, port: 25;nested exception is:java.net.ConnectException: Connection timed outorg.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)javax.servlet.http.HttpServlet.service(HttpServlet.java:624)org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)javax.servlet.http.HttpServlet.service(HttpServlet.java:731)org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:85)org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)org.springframework.orm.hibernate4.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:151)org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
请大神帮忙解决一下.我一个收件人和多个收件人都试过了 一样报错
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。