Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nebu John – WPMU DEV Support

    (@wpmudevsupport14)

    Hi @thisizpankajkr,

    I am afraid, this isn’t possible out of the box but the following custom code should help.

    <?php
    
    function forminator_strip_html_from_email( $front_mail, $custom_form, $data, $entry ) {
    
    	add_filter( 
    		'wp_mail',
    		function( $args ){
    			//remove_filter( 'forminator_custom_form_mail_before_send_mail', 'forminator_strip_html_from_email', 9 );
    			
    			$html = "<h1>Place your HTML footer here</h1>";
    			$args[ 'message' ] =  $args[ 'message' ].$html ;
    			return $args;
    		}
    	);
    
    }
    
    add_filter( 'forminator_custom_form_mail_before_send_mail', 'forminator_strip_html_from_email', 9, 4 );

    Please change the HTML code as per your need in the above code. You can add the code as a mu-plugin, please find more details here: https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Kind Regards,
    Nebu John

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @thisizpankajkr

    I hope you are doing well and safe!

    We haven’t heard from you in a while, I’ll mark this thread as resolved.

    Feel free to let us know if you have any additional question or problem.

    Best Regards
    Patrick Freitas

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I add an email signature to forminator mails’ is closed to new replies.