Set Email Content Type to HTML
Forces all outgoing WordPress emails to use text/html content type so HTML markup renders in mail clients.
PHPby SnipCraft
php
<?php
add_filter( 'wp_mail_content_type', 'scseed_html_email_content_type' );
if ( ! function_exists( 'scseed_html_email_content_type' ) ) {
function scseed_html_email_content_type() {
return 'text/html';
}
}#email#html#notifications#wp_mail