• Resolved Brad Doss

    (@cbraddoss)


    It would be nice to have the ability to set a separate email address (something other than the email address in General->Settings) that notification emails for website activity are sent to.

    I manage a very large number of WP sites and having these sorts of emails sent to clients can cause a lot more troubles than it’s worth. I find the emails very beneficial, but my clients will just get confused and think something is terribly wrong with their website.

    I hope this can be a feature added soon!
    Thanks!

    https://wordpress.org/plugins/sucuri-scanner/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Added here 949958 and available in version 1.6.2.

    Thread Starter Brad Doss

    (@cbraddoss)

    Nice. Thank You!!

    Awesome! Except the setting doesn’t stick for me in version 1.6.2. I add a new notification email, click change and the value on the left stays the same.

    There is an email validation between the form submission and the update of this option, it is probable that your email is not being validated correctly.

    a) Change the email to this user@host.com if it changes then the email you were adding is not valid according to the regular expression defined in the plugin’s code.

    b) If it doesn’t change, then it means there’s something wrong with the _options table, considering the following pseudo-code executed when processing the form submission.

    if(
      POST.email.isset?
      && is_valid_email(POST.email)
    ){
        update_option( 'custom_email', POST.email );
        notify_event( ... );
        display_success( ... );
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Notification Email’ is closed to new replies.