With this filter you can overwrite or manipulate the headers of the feedback email for people who have voted.
/**
* @param array $headers
* @return array
*/
add_filter('helpful_feedback_email_headers_voter', function(array $headers) {
$headers[] = 'CC: John Doe <john@email.com>';
return $headers;
});
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.