Hello all...I posted this earlier last week, and got some suggestions, but none worked....this is the scenerio:
3 files on the website
classes.asp (which is the form the user fills out)
classes_info.asp (which is just the code to send the form)
classes_thanks.asp (which appears after clicking the submit button)
However, I'm not getting any e-mails...I have tried several accounts, from my Outlook account to to my Comcast account. It SEEMS to send it, but they never appear...any suggestions? Following is my script for the classes_info.asp page...
------------------------------
<% @language="VBSCRIPT" %>
<%
Dim myMail, myBody
myBody ="Name: "& request.form("name") & vbcrlf & "Company: " & request.form("company") & vbcrlf & "E-Mail: "& vbcrlf & request.form ("email") & vbcrlf & "MS Word: "& vbcrlf & request.form ("msword") & vbcrlf & "MS Access: "& vbcrlf & request.form ("msaccess") & vbcrlf & "MS Powerpoint: "& vbcrlf & request.form ("mspowerpoint") & vbcrlf & "MS Excel: "& vbcrlf & request.form ("msexcel") & vbcrlf & "msfrontpage: "& vbcrlf & request.form ("msfrontpage")
Set myMail = Server.CreateObject ("CDO.Message")
myMail.From = request.form("email")
myMail.To = "myemailaddress@mydomain.com"
myMail.Subject = "Class Information"
myMail.CreateMHTMLBody "myMail.Send
set myMail=nothing
Response.Redirect("classes_thanks.asp")
%>
--------------------
now, all of the files reside on the root directory on the website....do they need to go into the aspnet_client folder, or the ASPSecured folder?
Sorry, new to this and just cant seem to figure out where the e-mails are going...I was told to check the /queue folder earlier, but I'm afraid I cant find that..any help would be greatly appreciated...
"The secret of teaching is to appear to have known all your life what you learned this afternoon
3 files on the website
classes.asp (which is the form the user fills out)
classes_info.asp (which is just the code to send the form)
classes_thanks.asp (which appears after clicking the submit button)
However, I'm not getting any e-mails...I have tried several accounts, from my Outlook account to to my Comcast account. It SEEMS to send it, but they never appear...any suggestions? Following is my script for the classes_info.asp page...
------------------------------
<% @language="VBSCRIPT" %>
<%
Dim myMail, myBody
myBody ="Name: "& request.form("name") & vbcrlf & "Company: " & request.form("company") & vbcrlf & "E-Mail: "& vbcrlf & request.form ("email") & vbcrlf & "MS Word: "& vbcrlf & request.form ("msword") & vbcrlf & "MS Access: "& vbcrlf & request.form ("msaccess") & vbcrlf & "MS Powerpoint: "& vbcrlf & request.form ("mspowerpoint") & vbcrlf & "MS Excel: "& vbcrlf & request.form ("msexcel") & vbcrlf & "msfrontpage: "& vbcrlf & request.form ("msfrontpage")
Set myMail = Server.CreateObject ("CDO.Message")
myMail.From = request.form("email")
myMail.To = "myemailaddress@mydomain.com"
myMail.Subject = "Class Information"
myMail.CreateMHTMLBody "myMail.Send
set myMail=nothing
Response.Redirect("classes_thanks.asp")
%>
--------------------
now, all of the files reside on the root directory on the website....do they need to go into the aspnet_client folder, or the ASPSecured folder?
Sorry, new to this and just cant seem to figure out where the e-mails are going...I was told to check the /queue folder earlier, but I'm afraid I cant find that..any help would be greatly appreciated...
"The secret of teaching is to appear to have known all your life what you learned this afternoon