Ask a Question related to Macromedia ColdFusion, Design and Development.
-
bweno #1
CFLOOP and CFMAIL
Is there anyway to have cfloop delay 5 seconds inbetween each time it loops. I
am trying to send out an large email but my web host says I have to delay my
emails from being sent all at once. They have to be time delayed and 5 seconds
is their requirement.
Thanks...
bweno Guest
-
cfloop
The goal is to insert a record into table 'atd', which contains a document id and an associate id, for each document (38) and associate (150). So... -
Cfloop..
I am trying to loop over a list: <cfquery name="updsyllabus" datasource="#arguments.syl.dsn#"> UPDATE #arguments.syl.tname# SET <cfloop... -
CFMail Timing Out in CFLoop
I am using a hosted server and have no control over their settings. They say the Timeout for CFMail is set to 20 seconds. The problem I'm... -
<cfmail></cfmail> in a script
I am wondering if I can put <cfmail> tags and code within a javascript script. will the browser recognize it, and perform the instructions? ... -
cfmail - Attribute validation error for tag CFMAIL.
I'm getting the error ' Attribute validation error for tag CFMAIL.' on the code below. All its doing is outputting a text string to the TO: field. ... -
TurboMini #2
Re: CFLOOP and CFMAIL
I would have the page reload (after each mail is sent) using the settimeout function in javascript.
TurboMini Guest
-
MattRobertson #3
Re: CFLOOP and CFMAIL
If you do your looping server side you are either going to tie up one of CF's
available request threads for a Lonnng time, or you'll wind up with the request
timing out. You can fix the latter but you can't fix the former.
I wrote a mail throttler ages ago that does the job in a series of short
requests. Its a proven technique when it comes to slowing down mail delivery
to allow mailings to go out despite the frequency filters in place at many
ISP's. You can easily vary the thing to do 1 email every 5 seconds but unless
that specific rate is what you require you don't need to go anywhere near that
slow to solve the frequency filter problem, or even to dribble out mail on a
busy shared server.
[url]http://mysecretbase.com/Slowing_Down_CFMAIL.cfm[/url]
--Matt--
MSB Web Systems... [url]http://mysecretbase.com[/url]
Even historians fail to learn from history -- they repeat the same mistakes.
- John Gill, "Patterns of Force," stardate 2534.7.
MattRobertson Guest
-



Reply With Quote

