Ver Mensaje Individual
  #22 (permalink)  
Antiguo 19/09/2005, 20:16
Avatar de sen
sen
 
Fecha de Ingreso: abril-2005
Mensajes: 35
Antigüedad: 20 años
Puntos: 0
lo tengo asi.

Set msMail = CreateObject("CDONTS.NewMail")
With msMail
.BodyFormat = 0 'Set to 0 for HTML email, 1 for plain text.
.MailFormat = 0 'Set to 0 for HTML email, 1 for plain text.
.To = "[email protected]"
.From = "[email protected]"
.Subject = "Asunto"
.Body = "Cuerpo"
.Send
End With

tal cual, para ver si lo manda.esta bien asi?