Hi- I'm hoping someone can help me in determining the origin of my error-I have a simple form-
It's action is to another form with ASP code to send an email- that's it- When you fill the form out and hit submit- I get an Internal Server error 500- The server, granted is not run by me- it's out in Arizona, I have no access to it- here is my second page of code that is giving the problem- I don't think it's my ASP-
HELP-What's wrong? I looked at another form on the server and they have the SMTPsvg mailer; I've also seen the CDONTS- I have no clue how it's setup and I can't get in touch with this person- good huh?
<%
Dim t1name,t1,t2name,t2,t3name,t3,t4name,t4
t1name = "First Name:"
t1 = Request.Form("t1"
t2name = "Last Name:"
t2 = Request.Form("t2"
t3name = "Phone:"
t3 = Request.Form("t3"
t4name = "Equipment:"
t4 = Request.Form("t4"
Dim Mailer
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.To = "my email address"
Mailer.From = "User@home.com"
Mailer.Subject = "Classifieds Submission"
Mailer.Body = t1name & vbcrlf&_
t1 & vbcrlf&_
t2name & vbcrlf&_
t2 & vbcrlf&_
t3name & vbcrlf&_
t3 & vbcrlf&_
t4name & vbcrlf&_
t4
Mailer.Send
Set Mailer = Nothing
Response.Redirect "Response.Write"Thank You"
%>
THANKS- in advance for any and all help-
Lisa
It's action is to another form with ASP code to send an email- that's it- When you fill the form out and hit submit- I get an Internal Server error 500- The server, granted is not run by me- it's out in Arizona, I have no access to it- here is my second page of code that is giving the problem- I don't think it's my ASP-
HELP-What's wrong? I looked at another form on the server and they have the SMTPsvg mailer; I've also seen the CDONTS- I have no clue how it's setup and I can't get in touch with this person- good huh?
<%
Dim t1name,t1,t2name,t2,t3name,t3,t4name,t4
t1name = "First Name:"
t1 = Request.Form("t1"
t2name = "Last Name:"
t2 = Request.Form("t2"
t3name = "Phone:"
t3 = Request.Form("t3"
t4name = "Equipment:"
t4 = Request.Form("t4"
Dim Mailer
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.To = "my email address"
Mailer.From = "User@home.com"
Mailer.Subject = "Classifieds Submission"
Mailer.Body = t1name & vbcrlf&_
t1 & vbcrlf&_
t2name & vbcrlf&_
t2 & vbcrlf&_
t3name & vbcrlf&_
t3 & vbcrlf&_
t4name & vbcrlf&_
t4
Mailer.Send
Set Mailer = Nothing
Response.Redirect "Response.Write"Thank You"
%>
THANKS- in advance for any and all help-
Lisa