我正在尝试使用 Grails Mail 插件http://grails.org/plugin/mail和 Postfix https://www.digitalocean.com/community/articles/how-to-install-and-setup-postfix-on-ubuntu -12-04。我可以在 Linux 中使用“sendMail”发送电子邮件。但是我很难配置邮件插件来使用它。
有人有这方面的经验吗?或者你有其他好的解决方案吗?
非常感谢。
我正在尝试使用 Grails Mail 插件http://grails.org/plugin/mail和 Postfix https://www.digitalocean.com/community/articles/how-to-install-and-setup-postfix-on-ubuntu -12-04。我可以在 Linux 中使用“sendMail”发送电子邮件。但是我很难配置邮件插件来使用它。
有人有这方面的经验吗?或者你有其他好的解决方案吗?
非常感谢。
在 grails-app/conf/application.yml 中放置以下设置
grails:
mail:
host: "yourDomain.com"
username: "username@yourDomain.com"
password: "your-password"
props:
mail.smtp.auth: "true"
mail.smtp.socketFactory.port: "465"
就是这样......对我来说,它适用于 Grails 3.3,使用插件 org.grails.plugins:mail:2.0.0 和 Postfix 版本 3.3