> Would anyone here happen to know about how I can insert a > return into a > document with CF without using <P> or <BR>? I'm sending out a > newsletter > via email, but it's not in HTML format so I have to strip out all the > <P>'s and <BR>'s which I've done. However I don't know what to replace > them with.
<CFSET Variables.CrLf = Chr(13) & Chr(10)> <CFSET Variables.Body = "Here is one line" & Variables.CrLf & "This is another"> <CFMAIL FROM="[EMAIL PROTECTED]" TO="[EMAIL PROTECTED]" SUBJECT="">#Variables.Body#</CFMAIL> -- Aidan Whitehall <[EMAIL PROTECTED]> Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

