add_filter( 'woocommerce_email_recipient_customer_completed_order', 'your_email_recipient_filter_function', 10, 2); function your_email_recipient_filter_function($recipient, $object) { $recipient = $recipient . ',[email protected]'; return $recipient; }
Add another email in woocommerce order
Read More Posts
- How to add business days to specific date in php?
- How to pick date(Date Picker) from text field with placeholder in jquery?
- How to count number of days in between two dates in php?
- How to create login and signup form in one box in html and css?
- How to Prevent negative inputs in form input type=“number”?