Ver Mensaje Individual
  #7 (permalink)  
Antiguo 04/06/2004, 11:06
Avatar de MrLake
MrLake
 
Fecha de Ingreso: febrero-2003
Ubicación: México
Mensajes: 75
Antigüedad: 22 años, 3 meses
Puntos: 0
Dieguicho.

Lo puedes hacer con esto.

Dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail")
MyMail.From = "[email protected]"
MyMail.To = "[email protected]"
MyMail.Subject = "prueba peoplesoft"
MyMail.BodyFormat = 1
MyMail.MailFormat = 0
MyMail.Importance = 2
MyMail.Body = sContenido

For Each fil in filecoll
Mail.AttachFile(Server.MapPath("modelos/" & fil.name))
Next


MyMail.Send
Set MyMail = Nothing



Espero te sirva

Última edición por MrLake; 04/06/2004 a las 11:09