Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/01/2010, 10:22
Avatar de Nefertiter
Nefertiter
 
Fecha de Ingreso: enero-2003
Ubicación: Rosario
Mensajes: 1.316
Antigüedad: 21 años, 4 meses
Puntos: 9
Respuesta: [PHP+SQL] Necesito obtener y convertir datos

es bastante sencillo lo que ncesitas es simplemente

Código PHP:
//tu conexion aqui

$q mysql_query("select email from usuarios");


//codigo inicio phpmailer

while ($r mysql_fetch_assoc($q)){
$mail->AddBCC($r['email']); 
}

//codigo envio phpmailer