You might try switching from CDONTS (which is being phased out) to the
newer CDO such as can be seen in the E-mail Attachment example at
http://www.asp101.com/samples And here are changes I made to convert CDONTS stuff to be CDO stuff
instead:
o Change objCDONTS to be called objCDO (actually this is just a cosmetic
change)
o This:
Set objCDONTS = Server.CreateObject("CDONTS.NewMail")
Changed to this instead:
Set objCDO = Server.CreateObject("CDO.Message")
o This:
objCDONTS.Body = strEmailBody
Changed to this instead:
objCDO.TextBody = strEmailBody
o This removed:
' Importance.
' (0=Low, 1=Normal, 2=High)
objCDONTS.Importance = 1
Best regards,
J. Paul Schmidt, Freelance ASP Web Designer
http://www.Bullschmidt.com ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Devdex
http://www.devdex.com ***