Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Email Problem (IIS)

Status
Not open for further replies.

zzfive03

Programmer
Jun 11, 2001
267
I have a problem with my e-mail script. It used to work fine, It would send out email like it should. I had some problmes elsewhere on my site and I had to reinstall my Option Pack 4.0. Now my e-mail script does not work.. Here it is below: (do I need to set up something in my IIS to make the e-mail work?)

Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
'the values are all strings passed from another page
MyCDONTSMail.From= myemail
MyCDONTSMail.To= address
MyCDONTSMail.CC= myemail
MyCDONTSMail.Subject="FS Ticket Resolved"
MyBody = "blah blah. " & vbCrLf
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing

Any help is appreciated..
Mh
 
Solved my own problem.. I needed to reinstall SP6.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top