chuckann3041
MIS
I have created a form in Dreamweaver. I also created the asp page that I need. After I fill out the form, I click "submit" and the email should be getting sent to me. I tested it and everything looked as it should. However, I have not yet received the email. What could be going wrong? Here is my code:
<% @language="VBSCRIPT" %>
<%
Dim myMail, myBody
myBody ="Name: "& request.form("name") & vbcrlf & "E-Mail: " & request.form("email") & vbcrlf & "Message: "& vbcrlf & request.form ("info")
Set myMail = Server.CreateObject ("CDONTS.NewMail")
myMail.From = request.form("email")
myMail.To = "kkemp@clearlumber.com"
myMail.Subject = "Customer Contact"
myMail.Body = myBody
myMail.Send
set myMail=nothing
Response.Redirect("thanks.htm")
%>
I appreciate any suggestions!!
K. Kemp
<% @language="VBSCRIPT" %>
<%
Dim myMail, myBody
myBody ="Name: "& request.form("name") & vbcrlf & "E-Mail: " & request.form("email") & vbcrlf & "Message: "& vbcrlf & request.form ("info")
Set myMail = Server.CreateObject ("CDONTS.NewMail")
myMail.From = request.form("email")
myMail.To = "kkemp@clearlumber.com"
myMail.Subject = "Customer Contact"
myMail.Body = myBody
myMail.Send
set myMail=nothing
Response.Redirect("thanks.htm")
%>
I appreciate any suggestions!!
K. Kemp