D
David Cairns
Hi
can anyone help me i am new to asp and going mad, why would the
following only display the last line in the email, i.e the history
text.
thanks David Cairns
<%@ Language=VBScript %>
<%
Dim objMail
Set objMail = server.CreateObject("CDONTS.NewMail")
objMail.From = "(e-mail address removed)"
objMail.To = "(e-mail address removed)"
objMail.Subject = "Wanted Morgan Form"
objMail.Body = Request.Form("Name")
objMail.Body = Request.Form("Your Address")
objMail.Body = Request.Form("Post Code")
objMail.Body = Request.Form("Phone")
objMail.Body = Request.Form("Morgan/Model")
objMail.Body = Request.Form("Mile")
objMail.Body = Request.Form("spec")
objMail.Body = Request.Form("History")
objMail.BodyFormat = CdoBodyFormatHTML
objMail.MailFormat = CdoMailFormatMime
objMail.Send
set objMail=nothing
Response.Redirect "finform.htm"
%>
can anyone help me i am new to asp and going mad, why would the
following only display the last line in the email, i.e the history
text.
thanks David Cairns
<%@ Language=VBScript %>
<%
Dim objMail
Set objMail = server.CreateObject("CDONTS.NewMail")
objMail.From = "(e-mail address removed)"
objMail.To = "(e-mail address removed)"
objMail.Subject = "Wanted Morgan Form"
objMail.Body = Request.Form("Name")
objMail.Body = Request.Form("Your Address")
objMail.Body = Request.Form("Post Code")
objMail.Body = Request.Form("Phone")
objMail.Body = Request.Form("Morgan/Model")
objMail.Body = Request.Form("Mile")
objMail.Body = Request.Form("spec")
objMail.Body = Request.Form("History")
objMail.BodyFormat = CdoBodyFormatHTML
objMail.MailFormat = CdoMailFormatMime
objMail.Send
set objMail=nothing
Response.Redirect "finform.htm"
%>