Skylined Well-known member Jun 27, 2016 #1 I have about 300 users with an Email invalid (bounced) state and I would like it to Valid. I've taken a look at Batch Update but I don't see the option to change that state. How may I change that for all of them without having to do it one by one?
I have about 300 users with an Email invalid (bounced) state and I would like it to Valid. I've taken a look at Batch Update but I don't see the option to change that state. How may I change that for all of them without having to do it one by one?
Jake Bunce Well-known member Jun 27, 2016 #2 Run this query on your database using a program like phpmyadmin: Code: UPDATE xf_user SET user_state = 'valid' WHERE user_state = 'email_bounce'; Upvote 0 Downvote
Run this query on your database using a program like phpmyadmin: Code: UPDATE xf_user SET user_state = 'valid' WHERE user_state = 'email_bounce';