mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/67177014/adding-product-hyperlink-to-low-stock-notification-email-in-woocommerce/67178555
4 lines
143 B
Text
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 );
|