corsonr
5/21/2015 - 5:15 PM

WooCommerce a dd recipient email on completed order

WooCommerce a dd recipient email on completed order

 /**
 * WooCommerce Extra Feature
 * --------------------------
 *
 * Add another email recipient when an order is completed
 *
 */
function woo_extra_email_recipient($recipient, $object) {
    $recipient = $recipient . ', your@email.com';
    return $recipient;
}
add_filter( 'woocommerce_email_recipient_customer_completed_order', 'woo_extra_email_recipient', 10, 2);