• Resolved meriadoc84

    (@meriadoc84)


    I’ve just installed bbPress Notify and it seems to be working quite well in that emails are successfully being sent when new Topics/Posts are created. Unfortunately it sends two copies to the recipient instead of one. Is this a ‘setting’ issue? Site: http://www.ulyssesclubgb.org

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author useStrict

    (@usestrict)

    Hi Meriadoc,

    The recipient array is an associative array of user_id => user object, so that the user_ids never receive duplicate emails. What I have seen though, is that sometimes WP has multiple users using the same email (IIRC, I saw Buddypress doing that).

    If you have access to your database, you can run the following query to check (replace wp_ with your correct prefix):

    select user_email, count(*) as cnt
    from wp_users
    group by 1
    having count(*) > 1

    If you don’t have access to phpMyAdmin or some other client, you can always install SQL Executioner plugin (you’ll then find it under Tools), making sure to remove it after you no longer need it.

    • This reply was modified 9 years, 6 months ago by useStrict.
    Thread Starter meriadoc84

    (@meriadoc84)

    Thanks for the reply Vinnie, I’ll give it a try.

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

The topic ‘Duplicate emails received’ is closed to new replies.