Last active
August 17, 2017 10:33
-
-
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 file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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