Paid affiliate advertisement

I need a way to export the email adresses of all of my users.

truesdell1495 - September 28, 2008 - 20:22

I need a way to export the email adresses of all of my users.

Here's a way . . .

oadaeh - September 28, 2008 - 21:08

<?php
  $results
= db_query('SELECT mail from {users}');
  while (
$e_mail_address = db_fetch_object($results)) {
    print(
$e_mail_address->mail);
  }
?>

Profile CSV

kbahey - September 28, 2008 - 22:07

Use the Profile CSV module.

Allows you to export any profile data for users into spreadsheets.
--
Drupal performance tuning, development, customization and consulting: 2bits.com, Inc.
Personal blog: Baheyeldin.com.

 
 

Drupal is a registered trademark of Dries Buytaert.