Log in

View Full Version : Getting a list of email addresses from forum members


tuslic
06-28-2007, 04:37 PM
I'm trying to collect the email addresses from my forum to start a email blast group but I have over 20,000 members so I'm trying to figure out is there anyway or any mod I can get that will generate a list of all the email addresses without me manually going threw each one?

Dismounted
06-29-2007, 06:05 AM
You could probably build something like this:
$emails = $vbulletin->db->query_read("
SELECT `email`
FROM `" . TABLE_PREFIX . "user`
");

while ($user = $vbulletin->db->fetch_array($emails))
{
echo $user['email'];
}