I have a cfmail sending out to approxiamately 8 people (dynamically). One of these addresses is incorrect and therefore the whole email is not sent out. Is there any settings in the coldfusion administrator or in the cfmail tag where this can be changed so it will send to the 7 correct people and only fail for the one person. I'm using CF8.
Old school:
<cfloop query="mails">
<cftry>
<cfmail from="#from#" to="#to#">
<!--- ... --->
</cfmail>
<cfcatch>
<div>
Mail not sent. #cfcatch.detail#
</div>
</cfcatch>
</cftry>
</cfloop>