I have a WooCommerce shop and it sends emails on every product order submission. I need to change the sender email address just for specific products into a custom address.
Already I am trying to achieve this using this code snippet to no avail:
add_filter('wp_mail_from', 'new_mail_from');
function new_mail_from($old) {
return '[email protected]';
}
I have a WooCommerce shop and it sends emails on every product order submission. I need to change the sender email address just for specific products into a custom address.
Already I am trying to achieve this using this code snippet to no avail:
add_filter('wp_mail_from', 'new_mail_from');
function new_mail_from($old) {
return '[email protected]';
}
Share
Improve this question
edited Mar 27, 2020 at 20:52
WordPress Speed
2,2833 gold badges19 silver badges34 bronze badges
asked Mar 27, 2020 at 8:32
ELEELE
134 bronze badges
1 Answer
Reset to default 1You have to use this filter:
add_filter( 'woocommerce_email_recipient_new_order', function( $recipient, $object ){
if($conditional){
$recipient = '[email protected]';
}
return $recipient;
});