P
Paul M
Hi Guys
I have created a jmail send script, the problem is that the body needs to
send about 8 form fields values in the body of the email. At the moment the
body looks something like.
body = Request.Form("desc")& vbCrLf & vbCrLf & "Organization: " &
Request.Form("MC_Organization_Name")& vbCrLf & vbCrLf & "Contact Name: " &
Request.Form("MC_contactname")--and so on
all in one continuous line. If I try and move some of the script to another
line like below the page fails
body = Request.Form("desc")
& vbCrLf & vbCrLf & "Organization: " & Request.Form("MC_Organization_Name")
& vbCrLf & vbCrLf & "Contact Name: " & Request.Form("MC_contactname")--and
so on
How can I use another line without this happening
Thanks
Paul M
I have created a jmail send script, the problem is that the body needs to
send about 8 form fields values in the body of the email. At the moment the
body looks something like.
body = Request.Form("desc")& vbCrLf & vbCrLf & "Organization: " &
Request.Form("MC_Organization_Name")& vbCrLf & vbCrLf & "Contact Name: " &
Request.Form("MC_contactname")--and so on
all in one continuous line. If I try and move some of the script to another
line like below the page fails
body = Request.Form("desc")
& vbCrLf & vbCrLf & "Organization: " & Request.Form("MC_Organization_Name")
& vbCrLf & vbCrLf & "Contact Name: " & Request.Form("MC_contactname")--and
so on
How can I use another line without this happening
Thanks
Paul M