With this you can filter email receivers for feedback emails. Basically this can also be done in the Meta Box or in the Helpful settings.
/**
* Add new receiver for feedback emails.
*
* @param array $receivers
* @return array
*/
add_filter('helpful_feedback_email_receivers', function (array $receivers) {
$receivers[] = 'name@email.com';
return $receivers;
});
Was this helpful?
Vote now and show me if you like or helped the content. After that, you can also leave feedback if you have a few more words to say.