java使用企业邮箱发送邮件报错:535 Login Fail. Please enter your authorization code to login. More information in

在使用腾讯企业邮箱发送邮件时报错:

535 Login Fail. Please enter your authorization code to login. More information in 
http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256

错误原因:
腾讯企业邮箱不需要授权码,password直接填写邮箱密码即可,对应SMTP主机名修改成:smtp.exmail.qq.com

配置文件

  mail:
  	# SMTP主机
    host: smtp.exmail.qq.com
    # 邮箱
    username: xxxxxxxxxx@xxx.com
    # 密码
    password: xxxxxxxxxx
    # 编码格式
    default-encoding: utf-8

你可能感兴趣的:(java,前端,服务器)