Since email seems to be a hot topic, here's an error message I'm receiving
when trying to send to a list of addresses:
Error Diagnostic Information
unknown exception condition
TagCFMail::sendMessage
The error occurred while processing an element with a general identifier of
(CFMAIL), occupying document position (40:1) to (43:42) in the template file
d:\_sites\wws\Community\EmailAdmin\WWS_send_notifications.cfm.
This cfmail code below works if I've only got one recipient in the list, but
as soon as I move to two or more I get the following error:
<----- here is the code I'm using ----------->
<cfset
EmailList="[EMAIL PROTECTED],[EMAIL PROTECTED],alkdsfsdlk">
<cfloop list="#EmailList#" index="email">
<cfif findnocase("@",email) and findnocase(".",email)>
<CFMAIL
SUBJECT="The Subject"
TO="#EMail#"
FROM="[EMAIL PROTECTED]">
This is a test
</cfmail>
</cfif>
</cfloop>
I can't wait until I know enough to give something back to the list, instead
of always asking for help. This list has seen me through a lot of new ideas
and code, so thanks a lot for being open to share your experience.
Kory
------------------------------------------------------------------------------
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.