2014-04-15 69 views

回答

7

試試這個代碼:

add_filter('woocommerce_email_headers', 'add_bcc_to_wc_admin_new_order', 10, 3); 
function add_bcc_to_wc_admin_new_order($headers = '', $id = '', $wc_email = array()) { 
    if ($id == 'new_order') { 
     $headers .= "Bcc: [email protected]\r\n"; // replace [email protected] with your email 
    } 
    return $headers; 
} 

該代碼被檢測,在WC 2.1

+0

偉大的@Ratnakar,只是什麼iv一直在尋找! –

+0

似乎無法使用WC 2.3 ...任何建議? – drake035

+1

@ drake035重新檢查它,它也在WC 2.3上工作 –

相關問題