Hello together! I have the problem that mails from the Enfold contact form are rejected by our server, because the sender address is the same as the mail address of the contactor. How can I change the sender address in the Enfold contact form?
Thanks for your help!
Hi HeylightMedia,
Please try to use this PHP snippet and add it to your functions.php (just change the email address):
function change_cf_from() {
return " (Email address hidden if logged out) ";
}
add_filter('avf_form_from', 'change_cf_from', 10);
Best regards,
Nikko