Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author lukerollans

    (@hellolukerollansme)

    Hey chewheck,

    You can modify the destination email address like this

    function testimonial_destination( $email ) {
        return '[email protected]';
    }
    add_filter( 'new_testimonial_notification_email', 'testimonial_destination', 10, 1 );

    This is un-tested, but should work. Marking as resolved, if you have any issues, please feel free to respond again ??

    If you are enjoying the plugin, please consider taking a moment to rate it!

    Cheers,
    Luke

    Plugin Author lukerollans

    (@hellolukerollansme)

    PS: That code should go in your themes functions.php file

    Thread Starter chewheck

    (@chewheck)

    Unfortunately that doesn’t seem to be working. It is still sending directly to my admin email. Any thoughts?

    Plugin Author lukerollans

    (@hellolukerollansme)

    Can you please copy and paste the exact code you’re using?

    Thread Starter chewheck

    (@chewheck)

    function testimonial_destination( $email ) {
    return [email protected];
    }
    add_filter( ‘new_testimonial_notification_email’, ‘testimonial_destination’, 10, 1 );

    Thread Starter chewheck

    (@chewheck)

    I also attempted it with the quotes around the email address

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Edit Email Destination’ is closed to new replies.