I have a problem.
I want add to Grails 3.0.9 AsynchronousMail:
compile 'org.grails.plugins:asynchronous-mail:1.2'
Gradle probably installing this plugin, just do not see him...
Can anyone succeed such a configuration?
Help me.
I have a problem.
I want add to Grails 3.0.9 AsynchronousMail:
compile 'org.grails.plugins:asynchronous-mail:1.2'
Gradle probably installing this plugin, just do not see him...
Can anyone succeed such a configuration?
Help me.
Just include this in your build.gradle:
There's good documentation here http://grails.org/plugin/asynchronous-mail
Go into your project directory. Let's say it's at $HOME/projects/myproj. Run the installer script for the plugin to initially create the config file:
Now, edit $HOME/projects/myproj/grails-app/conf/DefaultAsynchronousMailConfig.groovy
The initial default values should be enough to get you started.
Good luck!