3
我是Grails新手。 我使用郵件1.0 pluguin .. 我配置的配置文件,如下錯誤拒絕連接:使用郵件插件進行Grails電子郵件驗證
grails {
mail {
host = "smtp.gmail.org"
port = 465
username = "[email protected]"
password = "mypassword"
props = ["mail.smtp.auth":"true",
"mail.smtp.socketFactory.port":"465",
"mail.smtp.socketFactory.class":"javax.net.ssl.SSLSocketFactory",
"mail.smtp.socketFactory.fallback":"false"]
}
}
和使用SENDMAIL()在控制器如下
sendMail {
to "[email protected]"
subject "New User Confirmation"
body "how are u"
}
我沒有防火牆問題。 但它顯示s連接拒絕的錯誤....... ???