Dave,

Thanks, but I'm not sure where the improperly nested output is. Here's a
snippet of the code:

<CFMAIL QUERY="request.AccCart" 
        FROM="XXXXXX" 
        TO="#attributes.email#" 
        SUBJECT="Your On-Line Catalog Order">

From:  ACC Online Catalog
To: #attributes.firstname#  #attributes.lastname#
(mailto:#attributes.email#)
Re:       Your On-Line Catalog Order
Date:    #dateformat(NOW(),"DDDD, MMM DD, YYYY")#

Thank you for your order. Your order is listed below::

Shipping Information:

#attributes.sFirstName# #attributes.sLastName#
#attributes.AccountNO#
#attributes.sCompany#
#attributes.sAddress1# <CFIF attributes.saddress2 is not
"">#attributes.sAddress2#</CFIF>
#attributes.sCity#, #attributes.sState# #attributes.sZip#
Telephone: #attributes.sPhone#
E-Mail: #attributes.semail#
-----------------------------------------------------------------
       
Order Information:

      SKU     Style      Description     Size  QTY  Unit    Cost
                                                    Price
-----------------------------------------------------------------

<CFOUTPUT>
#RJustify(request.AccCart.currentrow,2)#
#RJustify(request.AccCart.sku,14)# #RJustify(request.AccCart.StyleNo,6)#
#RJustify(request.AccCart.Description,20)#
#RJustify(request.AccCart.size,2)# #RJustify(request.AccCart.QTY,4)#
#RJustify(DollarFormat(request.AccCart.PRICE),8)#
#RJustify(DollarFormat(request.AccCart.COST),10)#
</CFOUTPUT>

Total               #RJustify(DollarFormat(request.totalcost),20)#

-----------------------------------------------------------------

Again, thank you for your order. Please let us know if there are any
changes 
that need to be made to your order.

</CFMAIL>

larry

-- 
Larry C. Lyons
ColdFusion/Web Developer
EBStor.com
8870 Rixlew Lane, Suite 201
Manassas, Virginia 20109-3795
tel: (703) 393-7930 x253
fax: (703) 393-2659
http://www.ebstor.com
http://www.pacel.com
email: [EMAIL PROTECTED]

Chaos, panic, and disorder - my work here is done.
--

Dave Hannum wrote:
> 
> I believe that's caused when you try to do a improperly nested output inside
> your CFMAIL tag.
> 
> Dave
> 
> ----- Original Message -----
> From: "Larry C. Lyons" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, April 03, 2001 10:19 AM
> Subject: CF Mail Error
> 
> > I've just run across this error that I've never seen before. Anyone know
> > what it means and how to correct it?
> >
> > Error Diagnostic Information
> > unknown exception condition
> >
> > TagCFMail::sendMessage
> >
> > The error occurred while processing an element with a general identifier
> > of (CFMAIL), occupying document position (77:1) to (77:147).
> >
> >
> > Date/Time: 04/03/01 10:05:29
> > Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)
> > Remote Address: 127.0.0.1
> > HTTP Referer: http://127.0.0.1/ACC/carts/index.cfm?fuseaction=Checkout
> >

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to