Ocean10000

msg:4551022 | 7:47 pm on Mar 4, 2013 (gmt 0) |
Just a thought. It might be something as simple as the email being sent out as html instead of text which would ignore vbcrlf constant. You could replace "vbcrlf" with "<br>" and see if line breaks appear where you want them too.
|
dazz

msg:4551315 | 9:59 am on Mar 5, 2013 (gmt 0) |
If I change the code to - 'Add the email body text objCdoMessage.TextBody = Request.form & "<br>" I still get all the results squished together but with ...=&Comments=<br> at the end. I tried the <br> without the " and it doesnt work. Any other clues of how to break up the results!? It really is nearly unreadable. Thanks again
|
Staffa

msg:4551340 | 12:43 pm on Mar 5, 2013 (gmt 0) |
Insert before : Set objMail = Server.CreateObject("CDO.Message") the following : mBody = "Info sent :" & vbcrlf & vbcrlf mBody = mBody & "TourOperator : " & Request.Form("TourOperator or whatever you called it") & vbcrlf repeat this last line for each field in your form replace objCdoMessage.TextBody = Request.form by objCdoMessage.TextBody = mBody
|
dazz

msg:4551385 | 3:03 pm on Mar 5, 2013 (gmt 0) |
Staffa! You are an absolute hero. You dont know how much this was doing my head in. The forms now work a treat and easy to read...I very much appriciate your post and YOU have made my birthday which is today. Thanks Darren
|
Staffa

msg:4551444 | 5:40 pm on Mar 5, 2013 (gmt 0) |
You're very welcome dazz and Happy Birthday :o)
|
SevenCubed

msg:4551445 | 5:46 pm on Mar 5, 2013 (gmt 0) |
Happy birthday dazz. I think it's kinda cool that Staffa figured out the missing &&& on post 888.
|
|