Tim: Regarding your script - Have you been able to use the CDO.Message to attach files to the message before sending out? I tried using the AttachFile method, but apparently that only works in CDONTS. Any help would be appreciated.
Will Vaughn Director, Technology Operations AnnuityNet 703-669-1162 [EMAIL PROTECTED] -----Original Message----- From: Tim Royal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 10:42 PM To: NT 2000 Discussions Subject: RE: E-mail script Unless IIS is not installed on the NT box, SMTP should be available to use as an alternate, I believe. I use this particular javascript for sending email from just about anything on the NT box, and it's worked on all our boxes so far (the IS guy refuses to leave Netware) var iMsg = CreateObject("CDO.Message"); iMsg.To = "[EMAIL PROTECTED]"; iMsg.From = "BLADUDE <[EMAIL PROTECTED]>"; iMsg.Subject = 'The subject'; iMsg.HTMLBody = 'The text'; iMsg.Send(); iMsg = null; Maybe its useful, maybe not. hopefully, someone else has a better idea. Good luck. tim ------ You are subscribed as [email protected] Archives: http://www.swynk.com/sitesearch/search.asp To unsubscribe send a blank email to [EMAIL PROTECTED]
