For some reason, upon requesting an OTP code, the site is embedded in the front end form. I have looked for a site tag somewhere in the form code, but I don’t see one there. How can I resolve this?
Thanks! Ken
]]>Dear support team,
the email validation does not work properly – no error message displayed anymore.
According to the video found https://www.youtube.com/watch?v=26GwSnljoT4
there should be an error message displayed if the DNS does not exist.
This is not working see here – screenshot > https://www.screencast.com/t/VPywHThk
Please let me know when this is solved.
BR, Alex
]]>Hi to all,
I hope you are well?
Your Plugin doesn’t work with WordPress Version 5.7.1.
I write a wrong emailadress and the email is sent.
Does exist any solution?
Kind Regards,
Lejla
Hi,
When I use the “.cat” extension I get an error
Please enter a valid email address
how can I solve that?
Thanks a lot
]]>install and activated but not working with my latest wordpress version Version 5.4.1 kindly check what is issue what setttings i have to do?
]]>Hi,
I don’t know if this could help, but I noticed there might be just a few lines of code missing at the end of your file contact-form-7-email-validation-check.php to make your plugin translation ready.
Here are the lines :
function my_plugin_load_plugin_textdomain() {
load_plugin_textdomain( 'contact-form-7-email-validation', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
}
add_action( 'plugins_loaded', 'my_plugin_load_plugin_textdomain' );
I added those lines myself and was able to use a po file to translate the validation error message.
It would be great if those lines were already in place when installing the plugin.
]]>Hello,
Can you update the dns check to search for an mx record replacing :
return $response = (checkdnsrr($domain[1]) ? true : false);
with
return $response = (checkdnsrr($domain[1], "MX") ? true : false);
For exemple : [email protected] is accepted as gmail.fr domain exists, but it should not be accepted as valid because gmail.fr has no MX record.
Domains without MX records have no mail server, so they should not be validated by this plugin.
Thank you.
]]>When I test the form with an email I know to be invalid, I get the message: “Thank you for your message. It has been sent.”
]]>How can I customise the “Email address entered is not valid, DNS resolution failed.” message please?
]]>I have this WordPress plugin on my website. this plugin working awesome. but I have an issue I want to it accept the empty filed.
]]>Can this plugin accept the empty input email filed.
]]>Just recently I uploaded this plugin and it works pretty well when it comes to checking the email is correct or not when someone fills out our forms via the contact form 7. thank you for your efforts in setting up such a wonderful plugin.
However, we still seem to receive the form even when it indicates to the sender that the email was incorrect, and when the sender corrects the email, we receive the form again with the correct email address.
So now we are receiving the form twice, and its kind of effecting our data base integration, as we have an automated setting where each form submitted it automatically goes into our data base, hence we get two emails under the same name, one with the incorrect email and the other with the correct email.
How can we arrange the form NOT to be sent out (when pressing submit) the details when it indicates the email is incorrect?
]]>Hi,
my config is the following
Wordpress 4.9
contact form 4.9.1
download monitor 1.9.9
email before download 4.1
and your plugin Contact Form 7 Email Validation 2.0
it blocked the sending of the form by email and caused an internal error 500.
I had to deactivate to so I could reuse the form.
Do you have any plans to update your plugin any time soon?
Hey, I get this error message after the latest WordPress update.
WP 4.8 / CF 4.7
[ERROR] Unexpected token < in JSON at position 0
You have an Idea?
]]>Since v4.6 Contact Form 7 class WPCF7_Shortcode is deprecated
please change line 70
$tags = new WPCF7_Shortcode( $tags );
to
$tags = new WPCF7_FormTag( $tags );
Since php 7.0 “eregi” removed
please change line 55
$expression = "^[a-z\'0-9]+([._-][a-z\'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$";
to
$expression = "/^[a-z\'0-9]+([._-][a-z\'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$/i";
and line 57
if (eregi($expression, $emailAddress)) {
to
if (preg_match($expression, $emailAddress)) {
When deactivating “Contact Form 7 Email Validation” it submits form!
No error message.
Hi!
I want to translate the validation error message. I tried to do that but I wasn’t able to find that message in the source text. What should I do?
https://www.ads-software.com/plugins/email-domain-verification-in-cf7/
]]>