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
无法发送邮件PHP recaptcha
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
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; }本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报