Home › Forums › WooCommerce Front end file upload after checkout (WooConvo) › Email notification more than admin email Tagged: email notification This topic has 3 replies, 2 voices, and was last updated 3 years, 7 months ago by nmedia. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 4, 2021 at 10:01 pm #21550 IvanParticipant Hi, I found your code/example, but it doesn’t work. I want to send admin notification to admin email and one more email address. // Add this code at theme’s function.php at bottom add_filter(‘wooconvo_message_receivers’, ‘wooconvo_change_admin_email’, 10, 2); function wooconvo_message_receivers($receivers, $is_admin) { if( $is_admin ) { $receivers = array(‘your@email.com’); // add more email if need in array } return $receivers; } Regards January 12, 2021 at 7:15 am #21616 nmediaKeymaster Hi, You can add recipients via this option inside WooConvo settings: https://drive.google.com/file/d/13Cgi2Hr8XIAmH_yxw4b7n3JHOU1Ol37n/view?usp=sharing January 12, 2021 at 10:41 am #21623 IvanParticipant Hi, After adding more than one email address it doesn’t work at all, doesn’t send to the first default admin mail also. How can I add 2 addresses to the Receipient(s) field? Please look at screenshot https://prnt.sc/wlnp5v Regards January 13, 2021 at 1:28 pm #21677 nmediaKeymaster Ivan, we found the bug fixed in the new version, but you can fix it for now: inside classes/wooemail.class.php file near line number 49 found and replace this code: if(!empty($this->recipient) ) $to = array_merge($to, explode(',', $this->recipient)); Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In