Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Laszlo Kruchio

    (@lacee1986)

    Hi olesolo,

    You can add a simple hook to your functions file to do that.

    add_filter( 'wp_mail_content_type', 'set_content_type' );
    function set_content_type( $content_type ) {
    	return 'text/html';
    }

    The other option is to use a plugin to do this. I prefer the WP Better Emails plugin, but it’s up to you.

    I mark this as a requests for future release.

    Thanks!

    Plugin Author Laszlo Kruchio

    (@lacee1986)

    I assume that the problem is solved. If you have any questions, just let me know!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTML email’ is closed to new replies.