Code-Snippets-Functions/Execute a function on a child site/WordPress/enable-html-formatted-emails-wp-mail.txt

4 lines
143 B
Text

function filter_wp_mail_content_type() {
return "text/html";
}
add_filter( 'wp_mail_content_type', 'filter_wp_mail_content_type', 10, 0 );