Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manlioma/ee1cd0b8439c5ea73e79775bcf184cec to your computer and use it in GitHub Desktop.
Save manlioma/ee1cd0b8439c5ea73e79775bcf184cec to your computer and use it in GitHub Desktop.
additional recipients to a WooCommerce email order type, based on the order email address
// This sample code will add additional recipients to a WooCommerce email order type, based on the order email address
// Email id's for the various email types (i.e. customer_invoice) can be found here:
// https://github.com/woothemes/woocommerce/blob/5e09f15c91970d8bec4ab56abbfd5d3039a02a1b/includes/emails/class-wc-email-customer-invoice.php#L30https://github.com/woothemes/woocommerce/blob/5e09f15c91970d8bec4ab56abbfd5d3039a02a1b/includes/emails/class-wc-email-customer-invoice.php#L30
// Add the following to the bottom of your theme's functions.php:
add_filter( 'woocommerce_email_recipient_customer_invoice', 'woocommerce_email_customer_invoice_add_recipients' );
function woocommerce_email_customer_invoice_add_recipients( $recipient, $order ) {
if ( '[email protected]' == $recipient ) {
$recipient .= ', [email protected]';
}
return $recipient;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment