Don't know.. but google searches of:
"cfmail is limited"
"cfmail can only"
"cfmail can't"
"cfmail" "send over"
surely one of these would have hit it and all returned no results..
One method might be to group ten or so at a time.. you could do this by adding up a running variable like...
<CFSET cnt="">
<CFOUTPUT query="getEmails">
<CFSET cnt=listappend(cnt,EmailAddress)>
<CFIF listlen(cnt) eq 10>
...sendmail code... use #cnt# as the to email
<CFSET cnt=0>
</CFIF>
</CFIF>
<CFIF cnt neq 0>...sendmail code one more time using cnt as to the to value again because the number of email addresses was not divisible by ten for the last set.....</CFIF>
ALFII.com
---------------------
If this post answered or helped to answer your question, please reply with such so that forum members with a similar question will know to use this advice.