Right, what a way to start the day...  Having worked till 1am trying to
fix this bug(ger)....
<cffunction   
        name = "SendMail"   
        returnType = "String"   
        output = "no"   
>
        <cfargument name="To" type="string" required="Yes">
        <cfargument name="From" type="string" required="Yes">
        <cfargument name="Subject" type="string" required="Yes">
        <cfargument name="Body" type="string" required="Yes">
        <cfargument name="CC" type="string" required="No" default="">
        <cfargument name="BCC" type="string" required="No" default="">
        
        <cfif NOT request.isDevSite>    
                <cfset ReturnStr = "">
                <cfmail    
                        to = "#To#"
                        subject = "#Subject#"
                        from = "#From#"
                        server = "#ServerName#"
                >
                        #Body#
                </cfmail> 
        <cfelse>
                <cfset ReturnStr = "DevSite">   
        </cfif> 
        <cfreturn ReturnStr>
</cffunction>

There's the function, which is being called with near-identical
parameters from both pages.  The only difference is the body.  They're
both one line, one reads "testing" and the other you've seen.  This is
exactly the text from the body, I haven't stripped it down, I haven't
yet put the code in to insert the actual password yet.

While I was typing this, my tester has just told me that he has been
receiving mails from the first page this morning...  *shrug* I haven't
changed anything.  While I was testing last night, I would alternate
between the two pages, sometimes had both types of mails in the queue at
the same time, and the "testing" would send, and the other wouldn't.

I'd still appreciate any ideas/advice, because I'd like to know what to
do if this starts again... Especially if it's after release.

-----Original Message-----
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: 01 April 2005 11:33
To: CF-Newbie
Subject: RE: Email spooling[Scanned]

Sorry sorry sorry, I also meant to add...


..... cough please! :OD

-----Original Message-----
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: 01 April 2005 09:37
To: CF-Newbie
Subject: RE: Email spooling[Scanned]


You perve...

-----Original Message-----
From: Adrian Lynch [mailto:[EMAIL PROTECTED]
Sent: 01 April 2005 00:03
To: CF-Newbie
Subject: RE: Email spooling[Scanned]

Show us your bits!

-----Original Message-----
From: Richard Hensman [mailto:[EMAIL PROTECTED]
Sent: 31 March 2005 23:34
To: CF-Newbie
Subject: RE: Email spooling[Scanned]
This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions.
Visit our website at http://www.reedexpo.com





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:15:811
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to