Not getting character returns on the following code, help!!!
Bodytext = "Name: " & Request.Form("Name"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Job Title: " & Request.Form("Job_Title"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Company Name: " & Request.Form("Company_Name"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Company Activity: " & Request.Form("Company_Activity"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Address Line 1: " & Request.Form("Address_Line_1"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Address Line 2: " & Request.Form("Address_Line_2"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Address Line 3: " & Request.Form("Address_Line_3"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Address Line 4: " & Request.Form("Address_Line_4"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Post/ZipCode: " & Request.Form("Post/ZipCode"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Telephone: " & Request.Form("Telephone"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Fax: " & Request.Form("Fax"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Email: " & Request.Form("Email"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Request1: " & Request.Form("Please_Telephone"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Request2: " & Request.Form("Please_Send_Brochure"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Request3: " & Request.Form("Request_Representative"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "We currently buy from: " & Request.Form("We_currently_buy_from"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Goods used in manufacture of: " & Request.Form("Goods_used_in_manufacture_of"
& Chr(13) & Chr(10)
Bodytext = Bodytext & "Specific Requirements: " & Request.Form("Specific_Requirements"
& Chr(13) & Chr(10)
Set objCDOMessage = Server.CreateObject("CDONTS.NewMail"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
objCDOMessage.From = "bob@bob.com"
objCDOMessage.To = "bob@bob.com""
objCDOMessage.Subject = "Bion Website Enquiry"
objCDOMessage.BodyFormat = 0
objCDOMessage.MailFormat = 0
objCDOMessage.Body = Bodytext
objCDOMessage.Send
set objCDOMessage = nothing
Bodytext = "Name: " & Request.Form("Name"
Bodytext = Bodytext & "Job Title: " & Request.Form("Job_Title"
Bodytext = Bodytext & "Company Name: " & Request.Form("Company_Name"
Bodytext = Bodytext & "Company Activity: " & Request.Form("Company_Activity"
Bodytext = Bodytext & "Address Line 1: " & Request.Form("Address_Line_1"
Bodytext = Bodytext & "Address Line 2: " & Request.Form("Address_Line_2"
Bodytext = Bodytext & "Address Line 3: " & Request.Form("Address_Line_3"
Bodytext = Bodytext & "Address Line 4: " & Request.Form("Address_Line_4"
Bodytext = Bodytext & "Post/ZipCode: " & Request.Form("Post/ZipCode"
Bodytext = Bodytext & "Telephone: " & Request.Form("Telephone"
Bodytext = Bodytext & "Fax: " & Request.Form("Fax"
Bodytext = Bodytext & "Email: " & Request.Form("Email"
Bodytext = Bodytext & "Request1: " & Request.Form("Please_Telephone"
Bodytext = Bodytext & "Request2: " & Request.Form("Please_Send_Brochure"
Bodytext = Bodytext & "Request3: " & Request.Form("Request_Representative"
Bodytext = Bodytext & "We currently buy from: " & Request.Form("We_currently_buy_from"
Bodytext = Bodytext & "Goods used in manufacture of: " & Request.Form("Goods_used_in_manufacture_of"
Bodytext = Bodytext & "Specific Requirements: " & Request.Form("Specific_Requirements"
Set objCDOMessage = Server.CreateObject("CDONTS.NewMail"
objCDOMessage.From = "bob@bob.com"
objCDOMessage.To = "bob@bob.com""
objCDOMessage.Subject = "Bion Website Enquiry"
objCDOMessage.BodyFormat = 0
objCDOMessage.MailFormat = 0
objCDOMessage.Body = Bodytext
objCDOMessage.Send
set objCDOMessage = nothing