Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #270589

    I use the enfold contactform.
    Its sending mails from my personal email adress.
    Where can i change the from / reply email?

    #270619

    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

    #270785

    Thank you very much peter

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Reply adress, how can i change it to another?’ is closed to new replies.