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?
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