Hi,
We have ~25 contact forms set up in Enfold, and we have email notifications set up for each. We’re getting notifications for most of the form completions, but we’ve had 3 or 4 that haven’t sent notifications at all. I’ve checked the specific forms that were submitted to make sure our emails are entered correctly (and they are) and I’ve made sure that they’re not ending up in SPAM. Interestingly enough, it looks like only users who enter @yahoo.com email addresses don’t get sent through to us. Can you please help me figure out what’s going on?
Thanks,
Grey
Hi Grey!
Could be that the receiving end is blocking @yahoo addresses as the from
, one thing you could try is set a static from
address with a code like this (functions.php):
function change_cf_from() {
return "wordpress@YOURSITE.com";
}
add_filter('avf_form_from', 'change_cf_from', 10);
That way all form messages will be send with that address as the from
.
Cheers!
Josue