がwoocommerce_email_headers
フィルターフックに引っかけカスタム関数を使用することが可能であり、この方法は:
add_filter('woocommerce_email_headers', 'custom_admin_email_notification', 10, 3);
function custom_admin_email_notification($headers, $email_id, $order) {
// Targeting "on hold" order status only with BACS payments
if('customer_on-hold_order' == $email_id && 'bacs' == get_post_meta($order->id, '_payment_method', true)){
// Set HERE your additionals emails in this array:
$emails = array('Name1 <[email protected]>', 'Name2 <[email protected]>');
// Adding the new emails to 'Bcc' headers
$headers .= 'Bcc: '.implode(',', $emails).'\r\n';
}
return $headers;
}
コードは、あなたのアクティブな子テーマ(またはテーマ)のfunction.phpファイルに行きますまたは任意のプラグインファイルでも使用できます。
関連の答え:
は、私は怖いです動作するようには思えません。それでも標準の電子メールのみを取得します。 – mischiefbec