答えて

0

あなたは、電子メール通知「customer_processing_order」は、この方法を をターゲットに、 woocommerce_email_recipient_{$this->id}フィルターフックに引っかけカスタム関数を使用することができます。

add_filter('woocommerce_email_recipient_customer_processing_order', 'wh_OrderProcessRecep', 10, 2); 

function wh_OrderProcessRecep($recipient, $order) 
{ 
    // Set HERE your email adresses 
    $custom_email = '[email protected]'; 

    $recipient = $recipient . ', ' . $custom_email; 
    return $recipient; 
} 

コードは、あなたのアクティブなのfunction.phpファイルに行きます子供のテーマ(またはテーマ)。また、任意のプラグインのPHPファイルにもあります。

参考:

  1. Adding a second email address to a completed order in WooCommerce
  2. Customising WooCommerce notification emails with hooks and filters
  3. WooCommerce email notifications: different email recipient for different cities

は、この情報がお役に立てば幸い!

+0

ありがとうございます 正常に動作します –

関連する問題