Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    This plugin uses plaintext emails. I don’t think there are any plans to change that.

    You could choose to use html-mail on your website, by using code like this in your functions.php:

    <?php
    add_filter( 'wp_mail_content_type', 'set_html_content_type' );
    
    function set_html_content_type() {
    	return 'text/html';
    }
    ?>

    I do not know if that would help you really. The contents would still be plaintext but then inside a html-mail.

    Thread Starter jimario

    (@jimario)

    thanks for responding. you’ve boosted my confidence in this plugin. I actually figured out how to plug in the content type but I still needed to strip out the slashes that was being added. I replaced quotes with &#39.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘ATTN: Marcel Pol. Make email confirmations in html?’ is closed to new replies.