If you want to edit for your outgoing emails sent through the feedback form, you can use this filter. The filter allows you to edit the content of your email.
/**
* Replace the email body of feedback emails.
*
* @param string $body default body.
* @return string
*/
add_filter('helpful_feedback_email_body', function (string $body) {
return 'My body';
});
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.