我是Grails的新手。
我正在使用邮件1.0插件。
我配置如下配置文件

    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"]
        }
    }

并在 Controller 中如下使用sendMail()
 sendMail {
            to "[email protected]"
            subject "New User Confirmation"
            body "how are u"
        }

我没有防火墙问题。
但由于连接被拒绝而显示s ........ ???

最佳答案

可能是配置问题,您是否看过以下示例,该示例说明了如何通过SMTP使用Mailgun:https://github.com/jbayer/mail-java

关于grails - 错误连接被拒绝:使用邮件插件使电子邮件验证失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22224917/

10-14 10:03