最近须要发送邮件,就找到Hutool工具来,感受比较方便,但是在看案例的时候,都按照案例来的,一直报错。我用的是126邮箱来的。
Exception in thread "main" cn.hutool.extra.mail.MailException: AuthenticationFailedException: 535 Error: authentication failed
源码是这样的
MailAccount account = new MailAccount(); account.setHost("smtp.126.com"); account.setPort(25); account.setAuth(true); account.setFrom("mikemhm@126.com"); account.setUser("mikemhm"); //密码(注意不是登陆密码,是网易客户端登陆受权码) account.setPass("12345**"); MailUtil.send(account,CollUtil.newArrayList("bicc499@163.com"), "测试", "邮件来自Hutool测试", false);