私はgrails 2.2.1を使用しています。私はgrailsが初めてです。grails にメール プラグインを実装しようとしていますが、解決できないエラーが発生しています。
例外は次のとおりです。
Class: sun.security.provider.certpath.SunCertPathBuilderException
Message: unable to find valid certification path to requested target
私のメールプラグインの送信方法:
def send = {
sendMail {
to params.email
subject params.subject
body params.body
}
render "Mail Sent"
}