Why don't list the email address and loop through them. I send out about 13,000 a day using CFMAIL.
<cfloop query="QryGetEmails"> <cfmail to="#Email#" from="[EMAIL PROTECTED]" subject="Notification of Reminders" type="html"> #EmailBody# </cfmail> </cfloop> Rick -----Original Message----- From: Leslie Viviani [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 9:09 AM To: CF-Talk Subject: Help with CFMail I'm using the cfmail tag to send out a simple, monthly email to a group of users. However, the "To" field is showing up underneath the "CC" field. Does anyone know how to change this? I've pasted an example below: >Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] >Date: Mon, 10 Jun 2002 13:20:45 -0700 >From: [EMAIL PROTECTED] >Subject: Notification of Reminders >To: [EMAIL PROTECTED], [EMAIL PROTECTED] The code I'm using is below: <cfmail to="[EMAIL PROTECTED], [EMAIL PROTECTED]" cc="[EMAIL PROTECTED], [EMAIL PROTECTED]" from="[EMAIL PROTECTED]" subject="Notification of Reminders" type="html"> Email message here. </cfmail> 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 ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.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

