无法使用jhipster javamail office365发送电子邮件

643ylb08  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(318)

我一直在试着建立我们的关系no-reply@company.com 电子邮件以编程方式发送注册电子邮件、重置电子邮件等。虽然我在本地环境中有此功能,但在heroku的登台环境中,我遇到了一个似乎无法解决的错误。
以下是在heroku环境中抛出的错误消息:

Failed messages: com.sun.mail.smtp.SMTPSendFailedException: 554 5.2.0 STOREDRV.Submission.Exception:SendAsDeniedException.MapiExceptionSendAsDenied; 
Failed to process message due to a permanent exception with message Cannot submit message.

在application.yml文件中,我具有以下属性:

spring:
  mail:
    host: smtp.office365.com
    port: 587
    username: no-reply@company.com
    password: ${PASSWORD_FOR_EMAIL}
    recipient: support@provivi.com
    protocol: smtp
    tls: true
    properties.mail.smtp:
      auth: true
      starttls.enable: true
      ssl.trust: smtp.office365.com

我们使用jhipster,并将以下设置为“from”属性:

jhipster:
  mail:
    from: no-reply@provivi.com

我的配置文件有什么问题吗?我完全不知道我做错了什么。我需要对office365做些什么吗?任何帮助都会很好。谢谢!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题