dtkago3208 2013-08-02 18:46
浏览 15
已采纳

无法发送邮件PHP recaptcha

I have an issue with recaptcha, Its not sending the mail, even when if I have enter the code correctly, I have try so many times and I have even got someone else to try it and another person and secondly in my contact.php

  • 写回答

2条回答 默认 最新

  • dqroc48068 2013-08-02 19:24
    关注

    Your variable is $response, but you're checking to see if $resp is not valid. Change this:

        if (!($resp->is_valid)) {
            $captchaErrorMsg = true;
        }
    

    To

        if (!($response->is_valid)) {
            $captchaErrorMsg = true;
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?