If you still can't get it to send multiple emails, a
workaround would be to loop over a list of email addresses.

<cfset emailList ="[EMAIL PROTECTED],[EMAIL PROTECTED]">

<cfloop list="#emailList#" index="i">
<cfmail to="#i#">
.
</cfmail>
</cfloop>


Joseph DeVore
VeloxWeb Technologies



-----Original Message-----
From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 25, 2001 2:41 AM
To: CF-Talk
Subject: RE: cfmail and more than 1 cc problem


I tried that but still didn't work

Ta
Seamus

At 07:29 pm 25/10/01 , you wrote:
>should the cc addresses be separated by a ; not a comma?
>
>they certainly need to be when I add more than one to outlook when wending
a
>mail.
>
>HTH
>
>Will
>
>-----Original Message-----
>From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
>Sent: 25 October 2001 10:20
>To: CF-Talk
>Subject: cfmail and more than 1 cc problem
>
>
>Hi
>
>I am using cfmail to send some emails to more than one person
>
>A cannot, however, get it to work after I have more than one cc
>
>Here is my code:
><cfmail to="[EMAIL PROTECTED]"
>from="[EMAIL PROTECTED]"
>subject="TEST"
>cc="[EMAIL PROTECTED],[EMAIL PROTECTED]">
>TESTING
></cfmail>
>
>
>It works perfectly until I add the second cc.
>
>Is there any known problems with more than 1 cc address?
>
>Any clues?
>
>Many thanks
>
>Seamus
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
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