in reply to USING CDONT
CDONTS can be used with VBScript:
If you do a SuperSearch on cdonts here, you should be able to locate an example that describes using Win32::OLE.set ar = wscript.Arguments toaddr = ar.item(0) subject = ar.item(1) body = ar.item(2) Set objCDOMail = CreateObject("CDONTS.NewMail") objCDOMail.From = "mail@someplace.com" objCDOMail.to = toaddr objCDOMail.Subject = subject objCDOMail.Body = body objCDOMail.Send
update: Here is the node that I was thinking of when I looked at this question: Mail with CDONTS.
|
|---|