标签: grails
我正在使用Grails 3.0.1开展项目,需要为用户发送电子邮件。
我在想通过smtp使用gmail帐户发送。我读到了这个插件":mail:1.0.7" ,但没有在grails 3.0.1上安装。
以这种方式发送电子邮件的任何方式?
由于
答案 0 :(得分:4)
通过向mail添加compile 'org.grails.plugins:mail'安装build.gradle插件,然后阅读doco here。
mail
compile 'org.grails.plugins:mail'
build.gradle
如果您在安装时遇到问题,请尝试compile 'org.grails.plugins:mail:2.0.0.RC1'。
compile 'org.grails.plugins:mail:2.0.0.RC1'
答案 1 :(得分:1)
与here相关的问题已在2.0.0.RC2中解决。
现在compile 'org.grails.plugins:mail:2.0.0.RC1'适用于Grails 3.0.1