>     The Question:  Does ColdFusion have any tag or utility to intercept
> (i.e. capture) the text in front of the @ symbol and use it to
> re-direct the
> email contents into a database that is linked to the customer's
> account via
> an id or is this a function of the mail server software?  If this could be
> accomplished it will enhance the privacy of our current subscribers
> information and our own in-house security as well.

As for the 'capture', you could do something along the lines of:

<cfset pos = #Find("@", "#Email#")#>
<cfset account = "#Left(#Email#, #pos#)#">

That gives you everything before the @ symbol in the variable #account#.

As for the rest, I'm not sure.

Hatton Humphrey
Connecttexoma.com

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to