• Hi Guys

    This might help users who wish to be notified by e-mail on a rating.

    Insert @ line 648 in wp_postratings.php

    // OldSkool Send Mail On Rating
                        $multiple_recipients = array(
                        '[email protected]',
                        '[email protected]'
                        );
                        $subj = 'You Have Been Rated On Cranky Shaft';
                        $body = 'Hi Cranky User<br><br>You have a new Cranky Rating from '.$rate_user. ' on your Cranky listing ' .$post_id. '<br><br>
    Your rating was ' .$ratings_value[$rate-1]. '
    <br><br>
    Miss Spelt
    <br>
    The Cranky Team' ;
                        add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
                        wp_mail( $multiple_recipients, $subj, $body );

    https://www.ads-software.com/plugins/wp-postratings/

  • The topic ‘E Mail On Rating’ is closed to new replies.