• Resolved rp4rusty

    (@rp4rusty)


    Hi Balz,

    When we activate the option of sending email whenever post gets rated, this email is sent to the email address set in the general WP options. However, how can we do to have these emails sent to another address? The email address set in WP is that of the administrator of the website, while what I intend is that the rating notices should be sent to the marketing department. Is it possible to configure this in the plugin?

    Thank you in advance for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Blaz K.

    (@blazk)

    Hi @rp4rusty,

    I’ll add a filter there in the next update. I hoped to push an update this week but I’m not sure I’ll manage. Next week at latest 🙂

    Regards,
    Blaz

    Thread Starter rp4rusty

    (@rp4rusty)

    Hi @blazk,

    Great news! Thank you for implementing this filter. I look forward to the next update.

    Best regards,

    Plugin Support Blaz K.

    (@blazk)

    @rp4rusty, added in version 2.9.2. See example below:

    
    add_filter( 'rmp_mail_address', 'my_change_rmp_email' );
    
    function my_change_rmp_email( $email ) {
      return 'test@test.com';
    }
    

    Regards,
    Blaz

    Thread Starter rp4rusty

    (@rp4rusty)

    Hi @blazk,

    Amazing, it works perfectly!
    Great support, as usual!

    Thank you very much @blazk.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Alternative email address for rated posts’ is closed to new replies.