Tagged: contactform, reply
I use the enfold contactform.
Its sending mails from my personal email adress.
Where can i change the from / reply email?
Hey jskooij!
You can change the “from” email address with a filter. Insert this code into the child theme functions.php file or into enfold/functions.php:
add_filter('avf_form_from', 'avia_change_from', 10, 3);
function avia_change_from($from, $new_post, $params){
$from = " (Email address hidden if logged out) ";
return $from;
}
and instead of ” (Email address hidden if logged out) ” insert your email address.
Cheers!
Peter
Thank you very much peter