Created
January 10, 2022 20:13
-
-
Save lukecav/e5df386ad23daff8742f8b150d35242b to your computer and use it in GitHub Desktop.
Enable HTML content in site emails in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
https://stackoverflow.com/questions/67177014/adding-product-hyperlink-to-low-stock-notification-email-in-woocommerce/67178555