Peter, If you are supressing whitespace in your pages, add the <CFPROCESSINGDIRECTIVE> tag to unsuppress it so that you can control whitespace within your mail body. If you need to use monospace to line up tables etc., add the CFMAILPARAM tag to specify the monospace font.
<CFPROCESSINGDIRECTIVE SUPPRESSWHITESPACE="NO"> <CFMAIL TO="#Recipient#" FROM="#Sender#" SUBJECT="#Subject#"> <CFMAILPARAM NAME="Content-Type" VALUE="text/plain; charset=iso-8859-1"> *************************************************************** * Your mail body here * *************************************************************** </CFMAIL> </CFPROCESSINGDIRECTIVE> Regards: Ayudh +--------------------------------------------------------------+ | Put money in your bank while you're on the road. | | Secure credit card payment by SMS messaging. | | VeriPay mPOS from Xilo Online: http://www.xilo.com/mpos | +--------------------------------------------------------------+ ----- Original Message ----- From: "Peter J" <[EMAIL PROTECTED]> Newsgroups: cfaussie To: "CFAussie Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 04:43 Subject: [cfaussie] Formatted email > I've managed to get cfmail up and running to email a response back to the > user, confirming a request has been received. My current issue which I've > searched high and low for is how to have the email formatted so that it > appears set out in some sort of order, currently its just the text from the > auto response and its all over the shop. > > Eg would be > > Dear Peter > > thank you blah..blah.......................................... > blah.................................... > blah.................................................... > > I've read its formatted by command type = html, i've tried playing around no > luck. Any assistance you could provide is welcome. > > Cheers > Peter > > > > --- > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > > MX Downunder AsiaPac DevCon - http://mxdu.com/ --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
