简体   繁体   English

Woocommerce BCC订购电子邮件给管理员

[英]Woocommerce BCC on order email to admin

When someone makes an order in woocommerce, you get an email of the order as the administrator. 当有人在woocommerce中下订单时,您会收到一封订单的电子邮件作为管理员。 I'd like to add additional recipients for this email. 我想为此电子邮件添加其他收件人。 However! 然而! I'd only like this extra BCC to be made on these exact mails. 我只想在这些确切的邮件上加上这个额外的BCC。 Not all the other mails going through. 并非所有其他邮件都通过。

What is said in this thread applies to all mails, and not specificly the order emails that the admin gets: Additional recipients on woocommerce invoice 此主题中的内容适用于所有邮件,而不是特定于管理员获取的订单电子邮件: woocommerce发票上的其他收件人

Try this code: 试试这段代码:

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: my_personal@email.com\r\n"; // replace my_personal@email.com with your email
    }
    return $headers;
}

This code is tested in WC 2.1 此代码在WC 2.1中进行了测试

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Woocommerce-仅当管理员是收件人或按订单状态时,密件抄送电子邮件 - Woocommerce - Bcc email only when the admin is recipient OR by Order Status 将管理员 email 设置为 WooCommerce 取消和失败订单的 BCC - Set admin email as BCC for WooCommerce cancelled and failed orders 在Woocommerce中将新帐户电子邮件通知作为密件抄送发送给管理员 - New Account Email Notification sent to Admin as BCC in Woocommerce Woocommerce管理员订单页面详细信息-电子邮件不起作用 - Woocommerce admin order page details - Email is not working 添加供应商自定义字段 email 地址作为 BCC 到 woocommerce email 新订单 - Add a Supplier custom field email address as BCC to woocommerce email New Order 将 woocommerce optgroup 选择值添加到 email 订单管理订单 - add woocommerce optgroup selected value to email order an admin order 将bcc添加到woocommerce的新订单表单中 - Add bcc to new order form for woocommerce WooCommerce BCC将完整的订单邮件发送给客户 - WooCommerce BCC on complete order mail to customer 在Woocommerce中将订单交易ID添加到管理员新订单电子邮件通知中 - Add orders transaction id to admin new order email notification in Woocommerce 在管理新订单电子邮件模板中添加应用的优惠券代码 - WooCommerce - Add Applied Coupon Code in Admin New Order Email Template - WooCommerce
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM