Does anyone know? I have verified the below code iterates at least once:
<cfloop index="i" from="1" to="#ArrayLen(recipients)#">
<cfmail to="#recipients[i][1]#" from="server@server" subject="Report A Problem Message from #CGI.SERVER_NAME#">
<cfmailpart type="text">#textmessage#</cfmailpart>
<cfmailpart type="html">#message#</cfmailpart>
</cfmail>
</cfloop>
I do not get anything though, and I have dumped #recipients[i][1]# and successfully gotten an email so that is why I am asking this question.
Thanks,
Darren