How do you use the filter 'eddsr_get_email_to'?

Filter 'eddsr_get_email_to' can be used to modify outgoing email to address contents for the recovery emails.

In your theme's `functions.php` file try the following.

add_filter( 'eddsr_get_email_to', 'testing_get_email_to', 10, 2 );
function testing_get_email_to( $to, $payment_id ) {
    return 'Michael Cannon <test@yourdomain.com>';
}