Title: Default order email CC setting?
Last modified: May 15, 2026

---

# Default order email CC setting?

 *  [Shamya](https://wordpress.org/support/users/shamya3/)
 * (@shamya3)
 * [1 day, 19 hours ago](https://wordpress.org/support/topic/default-order-email-cc-setting/)
 * Quick question about default order emails. Does Woo have a built-in setting to
   cc the admin on customer processing emails, or do I need a custom snippet for
   that? Just trying to avoid extra plugins.

Viewing 1 replies (of 1 total)

 *  Plugin Support [Frank Remmy (woo-hc)](https://wordpress.org/support/users/frankremmy/)
 * (@frankremmy)
 * [1 day, 18 hours ago](https://wordpress.org/support/topic/default-order-email-cc-setting/#post-18908912)
 * Hi [@shamya3](https://wordpress.org/support/users/shamya3/),
 * Great question about WooCommerce order emails!
 * WooCommerce does have a recipient field for admin-facing emails (like “New Order”)
   under WooCommerce → Settings → Emails. You can add multiple email addresses there
   separated by commas.
 * However, for customer-facing emails like the Processing Order confirmation, there’s
   no built-in CC field. If you want the admin CC’d on those, you’d need a small
   snippet. Here’s one you can add via Appearance → Theme File Editor → functions.
   php or a [Code Snippets](https://wordpress.org/plugins/code-snippets/) plugin:
 *     ```wp-block-code
       add_filter( 'woocommerce_email_headers', function( $headers, $email_id, $order ) {
           if ( $email_id === 'customer_processing_order' ) {
               $headers .= 'CC: Admin Name <admin@youremail.com>' . "\r\n";
           }
           return $headers;
       }, 10, 3 );
       ```
   
 * Replace `admin@youremail.com` with your email address. You can also change `customer_processing_order`
   to any other email ID (like `customer_completed_order`) to CC on different email
   types.
 * Also, I’m curious. Do you often send custom notifications or manage multiple 
   email recipients for your store?
 * Looking forward to your response.
    -  This reply was modified 1 day, 18 hours ago by [Frank Remmy (woo-hc)](https://wordpress.org/support/users/frankremmy/).
    -  This reply was modified 1 day, 18 hours ago by [Frank Remmy (woo-hc)](https://wordpress.org/support/users/frankremmy/).

Viewing 1 replies (of 1 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdefault-order-email-cc-setting%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Frank Remmy (woo-hc)](https://wordpress.org/support/users/frankremmy/)
 * Last activity: [1 day, 18 hours ago](https://wordpress.org/support/topic/default-order-email-cc-setting/#post-18908912)
 * Status: not resolved