Hi,
I’ve noticed that the emails that gets sent to me FROM my website (using the standard Enfold form builder) use the ‘from’ address of the user that fills out the form, not the ‘from’ address as set in Enfold.
Is this correct behaviour? It’s just that some people enter emails that get marked as spam…
Hope that makes sense
Thanks
Steve
Hey sdturnbull,
If you have a child theme already installed and activated, just add this php code in functions.php:
function change_cf_from() {
return " (Email address hidden if logged out) ";
}
add_filter('avf_form_from', 'change_cf_from', 10);
Just replace the email with your website’s email so it doesn’t go to spam.
For more information, check this on our docs: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
Nikko