When the order status in WooCommerce is set from pending to processing I can send an email to my customer. But I need to send an email only to a custom email adresse instead of the customer default address.
Is there a hook or filter for the functions.php
file?
This custom function hooked in
woocommerce_email_recipient_customer_processing_order
filter hook, will do the job (Set in it your replacement email):Code goes in function.php file of your active child theme (or theme) or also in any plugin file.
Tested and works