G
Guest
Hi, sorry if this is in the wrong spot. Finding the newsgroups on MS's site could have been easier
Here's my problem
I've got some old asp's that are running our simple web site. In a section, there's a contact for
that collects a few lines of info, and when you hit submit, it takes that and sends it to a specifie
email address. It's been working all this time, but recently we just bought and implemented
exchange 2003 on the server and this mail sending contact page suddenly stopped working
The error page
HTTP 500.100 - Internal Server Error - ASP erro
Error Type
Microsoft VBScript runtime (0x800A0046
Permission denie
I seem to remember that something was wrongly configured in the past which I corrected but it's bee
so long that I'm not able to figure it out, even after searching through MS's various knowledge base pages
Any help would be greatly appreciated. Here's the code in the asp file itself. It's simply sending mail
through the local server
Body = Body & "Zip Code: " & request("zip") & vbCrL
Body = Body & "Comments: " & request("comments") & vbCrL
Dim objMai
Set objMail = CreateObject("CDONTS.NewMail"
objMail.From = request("email"
objMail.To = "(e-mail address removed)
objMail.Subject = "A letter!
objMail.Body = Bod
objMail.Send
Here's my problem
I've got some old asp's that are running our simple web site. In a section, there's a contact for
that collects a few lines of info, and when you hit submit, it takes that and sends it to a specifie
email address. It's been working all this time, but recently we just bought and implemented
exchange 2003 on the server and this mail sending contact page suddenly stopped working
The error page
HTTP 500.100 - Internal Server Error - ASP erro
Error Type
Microsoft VBScript runtime (0x800A0046
Permission denie
I seem to remember that something was wrongly configured in the past which I corrected but it's bee
so long that I'm not able to figure it out, even after searching through MS's various knowledge base pages
Any help would be greatly appreciated. Here's the code in the asp file itself. It's simply sending mail
through the local server
Body = Body & "Zip Code: " & request("zip") & vbCrL
Body = Body & "Comments: " & request("comments") & vbCrL
Dim objMai
Set objMail = CreateObject("CDONTS.NewMail"
objMail.From = request("email"
objMail.To = "(e-mail address removed)
objMail.Subject = "A letter!
objMail.Body = Bod
objMail.Send