Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/11/2002, 05:07
Avatar de TomaHawkk
TomaHawkk
 
Fecha de Ingreso: diciembre-2001
Ubicación: España
Mensajes: 422
Antigüedad: 23 años, 5 meses
Puntos: 1
Hola!

Si quieres enviar a varios solo tienes que hacer un bucle y ya esta.

strSQL = "select * from personas"

adoRec.Open strSQL, adoCon

Do While not adoRec.EOF

Set ObjMail = Server.CreateObject("CDONTS.NewMail")
.......
.......

adoRec.MoveNext
Loop

Saludos.