用Zoho中继废弃的Spring Boot

时间:2018-07-17 20:16:22

标签: spring-boot javamail zoho

我正在使用Spring Boot,并且已经将Zoho邮件配置为smtp服务器。以下是我与邮件有关的应用程序属性

"LevelSwitches": {
  "$appLogLevel": "Debug",
  "$netLogLevel": "Information",
  "$sysLogLevel": "Error"
},
"MinimumLevel": {
  "ControlledBy": "$appLogLevel",
  "Override": {
    "Microsoft": "$netLogLevel",
    "System": "$sysLogLevel"
  }
}

我遇到以下错误:

spring.mail.host = smtp.zoho.com
spring.mail.port = 587
spring.mail.username= emialid
spring.mail.password = password
spring.mail.properties.mail.smtp.auth = true
spring.mail.properties.mail.smtp.starttls.enable=true

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您必须提及setFrom()以及用作身份验证用户名的电子邮件地址。 确保用户名和发件人地址相同。