Hi there,
I'm new to the forums and a programming novice.
I've set up a CDOSYS form to email (a newsletter sign-up) and I'm trying to get my form field data to display on separate lines after the form has been processed - like the following:
Name: [value]
Company: [value]
Email: [value]
Subscribe: [value]
Unsubscribe: [value]
Here's the piece of the code I'm having trouble with:
with oCdoMail
.Subject = "Newsletter Request"
.TextBody = Name: Request.Form("Name") & vbCrLf & "
Company: & Request.Form("Company") & vbCrLf & "
Email: & Request.Form("Email") & vbCrLf & "
Subscribe: & Request.Form("Subscribe") & vbCrLf & "
Unsubscribe: & Request.Form("Unsubscribe")
end with
Any help is greatly, greatly appreciated. I'm going nuts (easy to do as a non-programmer).
gilroda