Hi,
I found this in the cfdocs. It is a way to use the pound symbol,  
which is what I thin that you are trying to do.
Sorry if I am not reading your mail right>
<h3>LSCurrencyFormat Example</h3>
<p>LSCurrencyFormat returns a currency value using the locale
convention. Default value is "local."
<!--- loop through list of locales; show currency values for 100,000  
units --->
<cfloop LIST = "#Server.Coldfusion.SupportedLocales#"
index = "locale" delimiters = ",">
    <cfset oldlocale = SetLocale(locale)>
    <cfoutput><p><b><I>#locale#</I></b><br>
       Local: #LSCurrencyFormat(100000, "local")#<br>
       International: #LSCurrencyFormat(100000, "international")#<br>
       None: #LSCurrencyFormat(100000, "none")#<br>
       <hr noshade>
    </cfoutput>
</cfloop>
On Jan 9, 2009, at 1:10 AM, Nick Way - South East Publishing wrote:

> <cfif mailtosend eq 1>
>     <cfset mailsubject = 'buy this for £10' >
> <cfelseif mailtosend eq 2>
>     <cfset mailsubject = 'buy something else for £20'>
> </cfif>
>
> <cfmail to="[email protected]" from="[email protected]"  
> subject="#mailsubject #" >
> message
> </cfmail>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4276
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to