I did some "lower impact" load testing with CDONTS.  It didn't seem to have
a problem at all.  I was sending 1000 letter bursts and it didn't overcome
the processor or leak memory.  I was using cfloop around a CDONTS custom
tag.

-----Original Message-----
From: list peters [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 03, 2001 9:39 PM
To: CF-Talk
Subject: Re: CDONTS


> It's probably not the best bulk-mailing solution (from what I've heard).
> Pay this concern as you consider expected mail volumes.

i might want to send out a few 1000 emails..... can i put the whole code in
a loop and send away without too many side effects?  could you elaborate
more?

anyway...
if anyone is interesting.... here is the code i used.

<!--- set attributes --->
<cfparam name="from" default="[EMAIL PROTECTED]">
<cfparam name="to" default="[EMAIL PROTECTED]">
<cfparam name="subject" default="email subject">
<cfparam name="body" default="email body">

<!--- send email --->
<cfobject type="COM" name="objNewMail" class="CDONTS.NewMail"
action="CREATE">
<cfset objNewMail.From = "#from#">
<cfset objNewMail.To = "#to#">
<cfset objNewMail.Subject = "#subject#">
<cfset objNewMail.Body = "#body#">
<cfset objNewMail.Send()>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to