如何调试和解决550不可路由地址错误?

时间:2018-10-19 11:59:52

标签: email spring-boot smtp

此错误的可能原因是什么?如何检测问题出在发件人,邮件服务器还是收件人?

电子邮件是从Spring Boot 2应用程序发送的。这是SMTP配置:

spring:
  mail:
    default-encoding: UTF-8
    host: mail.your-server.de
    username: donotreply@w-domain-different-from-recipient-s.de
    password: ********
    port: 587
    properties:
      mail:
        smtp:
          auth: true
          starttls:
            enable: true
    protocol: smtp
    test-connection: true

以我为例,将邮件发送到@ gmail.com地址时,它可以正常工作。将邮件发送到xxx@w-domain-s.de地址时,它无法传递邮件。但我通常要求采取步骤来解决此问题。

错误消息:

enter image description here

enter image description here

0 个答案:

没有答案