Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created January 10, 2022 20:13
Show Gist options
  • Save lukecav/e5df386ad23daff8742f8b150d35242b to your computer and use it in GitHub Desktop.
Save lukecav/e5df386ad23daff8742f8b150d35242b to your computer and use it in GitHub Desktop.
Enable HTML content in site emails in WordPress
function filter_wp_mail_content_type() {
return "text/html";
}
add_filter( 'wp_mail_content_type', 'filter_wp_mail_content_type', 10, 0 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment