gpt4 book ai didi

php - 在 Woocommerce 中使用电子邮件 ID 定位特定电子邮件

转载 作者:行者123 更新时间:2023-12-02 07:20:20 24 4
gpt4 key购买 nike

我在 Woocommerce 中设置了自定义状态和自定义电子邮件。我想使用当前的电子邮件,WC_Email ,而不是将当前状态作为电子邮件模板中的变量。

我需要在电子邮件模板中有一些 if 语句。我没有使用订单状态来确保如果来自订单的电子邮件被手动重新发送,它不会使用单独的电子邮件发送当前订单状态的数据。

如何回显 WC_Email电子邮件 ID 作为 Woocommerce 中的变量?

最佳答案

wc_order_email WooCommerce 中不存在类或函数,因此我更新了您的问题。
你看的是$email变量参数( WC_Email 当前类型对象)。它主要在模板和钩子(Hook)中到处定义。
要获取可用的当前电子邮件 ID 作为变量,您只需使用 $email_id = $email->id
要获取您的自定义电子邮件的当前电子邮件 ID,您应该使用此代码(仅用于 测试 ):

add_action( 'woocommerce_email_order_details', 'get_the_wc_email_id', 9, 4 );
function get_the_wc_email_id( $order, $sent_to_admin, $plain_text, $email ) {
// Will output the email id for the current notification
echo '<pre>'; print_r($email->id); echo '</pre>';
}
代码在您的事件子主题(或主题)的 function.php 文件中或任何插件文件中。
您将获得以下信息:
  • new_order
  • customer_on_hold_order
  • customer_processing_order
  • customer_completed_order
  • customer_refunded_order
  • customer_partially_refunded_order
  • cancelled_order
  • failed_order
  • customer_reset_password
  • customer_invoice
  • customer_new_account
  • customer_note

  • 一旦你得到 正确的电子邮件 ID slug 对于您的自定义电子邮件通知,您可以在任何以下 Hook 上使用它(而不是覆盖电子邮件模板):
    woocommerce_email_header (2 个参数: $email_heading$email)
    woocommerce_email_order_details (4 个参数: $order$sent_to_admin$plain_text$email)
    woocommerce_email_order_meta (4 个参数: $order$sent_to_admin$plain_text$email)
    woocommerce_email_customer_details (4 个参数: $order$sent_to_admin$plain_text$email)
    woocommerce_email_footer (1 个参数: $email)
    这里是 代码示例我只针对“新订单”电子邮件通知:
    add_action( 'woocommerce_email_order_details', 'add_custom_text_to_new_order_email', 10, 4 );
    function add_custom_text_to_new_order_email( $order, $sent_to_admin, $plain_text, $email ) {
    // Only for "New Order" email notifications (to be replaced by yours)
    if( ! ( 'new_order' == $email->id ) ) return;

    // Display a custom text (for example)
    echo '<p>'.__('My custom text').'</p>';
    }
    代码在您的事件子主题(或主题)的 function.php 文件中或任何插件文件中。
    测试和工作。

    关于php - 在 Woocommerce 中使用电子邮件 ID 定位特定电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47741577/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com