關於Hutool發送郵件

最近須要發送郵件,就找到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);

一開始我用的密碼都是登陸密碼,一直顯示驗證錯誤,後來改爲了受權碼,終於發送成功了。

相關文章
相關標籤/搜索