I wish to create a Cdonts email object in a vbs file and have it execute on command (not from an ASP page) but I am not sure how to write it. I put a small app together and got no errors nor e-mails. Any clue?
dim myMailer
set myMailer = server.createObject("Cdonts.NewMail"
MyMailer.To = "me@home.com"
MyMailer.Body = "Test message"
MyMailer.Send
Do I have to reference the CDONTS DLL?
dim myMailer
set myMailer = server.createObject("Cdonts.NewMail"
MyMailer.To = "me@home.com"
MyMailer.Body = "Test message"
MyMailer.Send
Do I have to reference the CDONTS DLL?