根据客户账单状态定义 WooCommerce 新订单电子邮件收件人

问题描述 投票:0回答:1

我改编了在Business Bloomer上找到的旧代码片段(2年)代码,根据客户所在国家/地区重定向新订单电子邮件通知,以满足我将其重定向到几个人的需要,其中一个是销售人员,另一个是经理,根据客户的账单状态。

我想出了以下代码,但无法正常工作,因为 WooCommerce 没有发送邮件通知。

// PART 1
// Define an array with the state and the intended recepient
// States Codes belong to Mexico states 
 
function matriz_estados( $ubica_estado ) {
   $destinatarios = array(
      'MO' => '[email protected], [email protected]',
      'CL' => '[email protected], [email protected]',
      'GT' => '[email protected], [email protected]',',

      //etc       
      
   );
   return $destinatarios[$ubica_estado];
}
 
// PART 2
// Extract Order billing state and correlate with array to define email recipients 

add_filter( 'woocommerce_email_recipient_new_order', 'define_receptor', 9999, 3 );
 
function define_receptor( $email_recipient, $order_object, $email ) {
   if ( is_admin() ) return $email_recipient;
   if ( $order_object && $ubica_estado = $order_object->get_billing_state() ) {
      $email_recipient = matriz_estados( $ubica_estado );
   }
   return $email_recipient;
}

有错误吗?里面有什么不该有的东西吗?

欢迎任何想法、建议和指正。

提前致谢。

php wordpress woocommerce customization email-notifications
1个回答
0
投票

您的代码中存在一些错误和遗漏的内容。

尝试以下方法:


// Utility function: Define an array of States code and email(s) pairs
function get_recipient_for_state( $state ) {
    $data = array(
        'MO' => '[email protected],[email protected]',
        'CL' => '[email protected],[email protected]',
        'GT' => '[email protected],[email protected]',
    );
    // Check if the customer state matches 
    return array_key_exists($state, $data) ? $data[$state] : '';
 }
  
// New order recipient based on customer billing state
add_filter( 'woocommerce_email_recipient_new_order', 'new_order_recipient_based_on_state', 9999, 3 );
function new_order_recipient_based_on_state( $recipient, $order, $email ) {
    if ( is_admin() || !$order ) return $recipient;

    $recipient_for_state = get_recipient_for_state( $order->get_billing_state() );

    return $recipient_for_state ? : $recipient;
}

应该可以。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.