Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #301616

    In my sent/autoreply mail I need a logo on top and some text with address under the main mail block. Can I use HTML and here to edit?

    #301884

    Hey!

    Try adding this code to the theme / child theme functions.php file:

    function custom_func($message) {
            $message .= "<img src='LOGO_URL'><br>";
    	return $message;
    }
    add_filter('avf_form_autorespondermessage', 'custom_func', 10, 1);

    Best regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.