Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Email all users from bbpress


chrishajer
Participant

@chrishajer

You could extract all the email addresses from the database with a tool like phpMyAdmin. I don’t know of a plugin that does this. If it’s a onetime thing, I would just grab the email addresses from the database with a query like:

SELECT DISTINCT user_email
FROM bb_users
ORDER BY user_email ASC

 

With all the email addresses, then just send out a mass email with your email client putting their email addresses in the BCC field.

Are you looking to do this regularly, and are you thinking this should be a plugin? I guess you’d need to know if the installation were integrated or not, then query the correct table, and also if it is an integrated installation, you’d need to separate out the bbPress registrations from the WordPress registrations.

Skip to toolbar