Grails 3.0.9发送邮件和AsynchronousMail

时间:2015-12-10 18:18:34

标签: grails grails-3.0 grails-3.0.9

我有问题。

我想添加 Grails 3.0.9 AsynchronousMail

compile 'org.grails.plugins:asynchronous-mail:1.2'

Gradle可能正在安装这个插件,只是看不到他......

有人能成功完成这样的配置吗?

帮帮我。

1 个答案:

答案 0 :(得分:1)

只需在build.gradle中包含它:

dependencies {
    compile 'org.grails.plugins:asynchronous-mail:2.0.0.RC2'
}

这里有很好的文档http://grails.org/plugin/asynchronous-mail

进入您的项目目录。让我们在$ HOME / projects / myproj中说出来。运行插件的安装程序脚本以初始创建配置文件:

cd $HOME/projects/myproj
grails install-asynchronous-mail-config

现在,编辑$ HOME / projects / myproj / grails-app / conf / DefaultAsynchronousMailConfig.groovy

初始默认值应足以让您入门。

祝你好运!