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
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