A
Andy
I have the following script to send my website form.
The problem is when the form is submitted it sends a blank form
Can anyone advise how i get the below to include the contents of all the
form fields.
The only way i found was to add each form field name in seperately however
there are
25 different fields. Is there way to get the below script to send
everything entered into the form
Many thanks
<%
Set MailObject = Server.CreateObject("CDONTS.NewMail")
MailObject.From = "(e-mail address removed)"
MailObject.To = "(e-mail address removed)"
MailObject.Subject = "Form"
MailObject.Send
Set MailObject = Nothing
' Now redirect
Response.Redirect "http://www.xxx.com/thank_you.htm"
%>
The problem is when the form is submitted it sends a blank form
Can anyone advise how i get the below to include the contents of all the
form fields.
The only way i found was to add each form field name in seperately however
there are
25 different fields. Is there way to get the below script to send
everything entered into the form
Many thanks
<%
Set MailObject = Server.CreateObject("CDONTS.NewMail")
MailObject.From = "(e-mail address removed)"
MailObject.To = "(e-mail address removed)"
MailObject.Subject = "Form"
MailObject.Send
Set MailObject = Nothing
' Now redirect
Response.Redirect "http://www.xxx.com/thank_you.htm"
%>