php WooCommerce自定义电子邮件标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce自定义电子邮件标题相关的知识,希望对你有一定的参考价值。

<?php // Do not include this if already open! Code goes in theme functions.php.

add_filter( 'woocommerce_email_headers', 'woo_update_emails_header', 10, 2);

function woo_update_emails_header( $headers, $object ) {
    $headers = array();
    $headers[] = 'Content-Type: text/html; charset=UTF-8'; // update the encoding/charset here
  
    return $headers;
}

以上是关于php WooCommerce自定义电子邮件标题的主要内容,如果未能解决你的问题,请参考以下文章

php [使用操作和过滤器自定义结帐字段]向电子邮件添加自定义WooCommerce结帐字段

WooCommerce 电子邮件模板自定义

WooCommerce Sensei 电子邮件自定义

在 woocommerce 中自定义新帐户电子邮件模板

为 Woocommerce 电子邮件主题启用自定义字段占位符

将附件添加到 WooCommerce 自定义电子邮件