Enable HTML formatting in emails in WordPress

Enable HTML formatting in emails in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

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

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.