如何编辑 WooCommerce 电子邮件中的附加内容?

How to edit additional content in WooCommerce emails?

我想编辑特定 WooCommerce 电子邮件的附加内容。有没有钩子过滤器可以做到这一点?

我刚刚使用过滤器 woocommerce_email_heading_customer_completed_order 更改了标题文本。

我也想为附加内容执行此操作。

您可以使用 'woocommerce_email_additional_content_' . $this->id.

您找到了完整的电子邮件 ID 列表。

所以在你的情况下:

  • woocommerce_email_additional_content_customer_refunded_order 全额退款
  • woocommerce_email_additional_content_customer_partially_refunded_order部分退款

试试这个:

// edit the additional content of the "Refunded order" email
add_filter( 'woocommerce_email_additional_content_customer_refunded_order', 'custom_additional_content_customer_refunded_order', 99, 3 );
add_filter( 'woocommerce_email_additional_content_customer_partially_refunded_order', 'custom_additional_content_customer_refunded_order', 99, 3 );
function custom_additional_content_customer_refunded_order( $content, $object, $email ) {
    $content = 'Your personalized additional content';
    return $content;
}

代码已经过测试并且可以工作。将它添加到您的活动主题 functions.php.