PDA

View Full Version : exporting email address


SEOvB
02-22-2008, 05:18 PM
I need to get all my forums members email address from the vBulletin database into a list whats the SQL query to select them all.;

Thanks

MoT3rror
02-22-2008, 07:55 PM
You can generate it by the Admin CP by
Users -> Generate Mailing List

Here is the SQL to select all
SELECT userid, email FROM users

SEOvB
02-22-2008, 08:34 PM
Thanks :)