Viewing 4 replies - 1 through 4 (of 4 total)
  • I’ll add it to the wishlist for a future version. Thanks!

    I’d love to see this, too. I have a client who has hired a third party Internet marketing strategist who needs to get an email each time a review is submitted. But we cannot put the third-party account rep’s email address as the main WP email address. (Of course the company owner would also like to receive the review notice emails.)

    Any work-around for this?

    is there a way to disable email notifications altogether?

    I’m not sure why this has been marked resolved, but if anyone still needs this, I found you can do this by using a custom field withing your post that contains the e-mail you want to notify. You can then just edit the wp-customer-reviews.php to call the custom field:

    global $post;
    $target_email = get_post_meta($post->ID, 'owner_email', true);

    and replace the wp_mail function that sends the email to the admin:

    @wp_mail("{$target_email}", "Your Website: New Review Posted on " . date('m/d/Y h:i'), "A new review has been posted for " . $this->options['business_name'] . " via WP Customer Reviews. \n\nYou will need to login to the admin area and approve this review before it will appear on your site.\n\n{$admin_link}");

    You can find more detailed instructions or the updated file
    WP Reviews Multibusinesses

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Customer Reviews] How can I have notifications of new reviews sent to a different email’ is closed to new replies.