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?