メールプラグインをgrailsで使用しようとすると問題が発生します。私がGoogleで検索したのは主にGrailsバージョン2のメールプラグインです。Grails 3を使用したメールプラグインの設定
私は私のbuildConfig.groovy
と
私のコントローラ機能私はそれを実行しようとするのいずれかで
sendMail {
to "[email protected]"
from "[email protected]"
subject "This is a test mail"
text "Hello, This is a test mail, how are you?"
}
に
compile 'org.grails.plugins:mail:2.0.0.RC6'
を使用してセットアップを試してみましたが、 MailConnectExceptionが発生しました。私はgrails 3のメールプラグイン設定を見逃しましたか?またはこのサイトのgrails 2のようにapplication.groovyに何かを追加する必要がありますか?http://grails.asia/grails-mail-plugin-example?