how to get email when a new order received by woocommerc code example
Example: woocommerce recipient email default change Function
function so_39779506_filter_recipient( $recipient ) {
// Use this to completely replace the recipient.
$recipient = '[email protected]';
// $recipient = '[email protected]';
return $recipient;
// Use this instead IF you wish to ADD this email to the default recipient.
//$recipient .= ', [email protected]';
}
add_filter( 'woocommerce_email_recipient_new_order', 'so_39779506_filter_recipient', 10, 2 );