Redd,

1. 40 is indeed the limit in the to fields.   -  (Best to do a cfloop over your list 
of names)
2. The proper format is a described below. (CF Hosting does not require SMTP server 
address in code)

<CFMAIL
          TO="#username# <useremail#>"
          FROM="[EMAIL PROTECTED]"
          Subject="I must include a subject line"
            >
You should also do some error checking in front of the emails to insure the address is 
formated correctly.  Bad address formats mean NO DELIVERY.

Try this snippit

<CFIF NOT Len(Trim(Form.Email))
                 OR Len(ReReplace(Form.Email,
 "^[A-Za-z0-9_\.\-]+@[A-Za-z0-9\.\-]+\.[A-Za-z]{2,}$", "", "ALL"))>

    <P>
         BAD EMAIL ADDRESS FORMAT!
   Please go back and correct it.<BR>
 <FORM>
 <INPUT TYPE=BUTTON VALUE="Go Back" onClick="history.back()">
 </FORM>

        <CFABORT>
</CFIF>

As far as large amounts of CFMAIL go I must say the best configuration possible for 
the maximum output and reliability of CFMAIL is to point things to a secondary server 
running UNIX with Exim configured for security of SMTP mail.

You do not want to run CF IIS and Mail on the same server.  This is taboo in our 
experience.  Even with the most brasin of servers you do not want to rob CF of ANY cpu 
or memory resources available on the server.  This becomes directly noticable in PID 
execution times.  Many NT based SMTP servers have a pretty large footprint and can 
seriously effect performace.

In a shared hosting enviorment we ask that our customers keep CFMAIL list sizes below 
2500 per hour during peak internet usage hours 10am EST - 8pm EST.  Even with a good 
mail server you do not want to dump to many CFMAILs into the spool folder all at once, 
particularly when you are running on a shared server.  Remember to be nice to your 
neighbors.  Large list will be better recieved by the server late in the evening.  And 
those
looking for imidiate responses to web forms will get quicker results if the spool 
folder is kept light.

F.Y.I.
Any application dependant on large amounts, (7,500k+  per day) of CFMAIL should have 
one thing in mind.  Dedicated Hardware.  You don't want your "Shared Server" neighbors 
hammering your resources.

CF-Server wrote:

> CF-Server-List                 Sat, 24 Mar 2001          Volume 1 : Number 112
>
> In this issue:
>
>         Cluster cats
>         RE: GetTemplatePath()
>         RE: Cluster cats
>         Re: Cluster cats
>         Re: GetTemplatePath()
>         new topic - Session variables
>         Re: Cluster cats
>         RE: HTTP 401.3 - Access denied by ACL on resource
>         RE: security
>         Re: Cluster cats
>         RE: Cluster cats
>         RE: HTTP 401.3 - Access denied by ACL on resource
>         RE: Cluster cats
>         Re: new topic - Session variables
>         Re: new topic - Session variables
>         CFMAIL
>         Re: new topic - Session variables
>         Re: CFMAIL
>         Re: CFMAIL
>         Re: CFMAIL
>         using CFMAIL to send out thousands of mails
>         Re: new topic - Session variables
>         Re: CFMAIL
>         RE: using CFMAIL to send out thousands of mails
>         Re: using CFMAIL to send out thousands of mails
>         Re: CFMAIL
>
> ----------------------------------------------------------------------
>
> Date: Fri, 23 Mar 2001 10:25:07 -0000
> From: "Alan Comeau" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Cluster cats
> Message-ID: <004801c0b383$889863f0$[EMAIL PROTECTED]>
>
> We are trying to cluster a pair of servers which have two network cards in each 
>machine, one with external IP's and one with Internal IP's. Cluster cats 
>administrator reports it primary IP address as 0.0.0.0. and I think this is the 
>reason the servers cannot see even themselves. All the DNS entries are I believe 
>correct, we have had no trouble before with single or teamed network cards, but dual 
>homeing seems t be a nightmare
>
> Alan Comeau
> Senior Programmer
> Vardus Internet Solutions Ltd
> 17 Heathmans Road
> London
> SW6 4TJ
> +44(0) 207 471 8899
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 10:41:20 -0000
> From: "Kola Oyedeji" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: GetTemplatePath()
> Message-ID: <0396C60E9D42D411B1B2003048210DF6082E7C@SERVER01>
>
> check that the loginfile does not have any trailing spaces as it must match
> exactly, output
> the result of GetTemplatePath() and paste it back into your code to be sure.
>
> HTH
>
> Kola
>
> -----Original Message-----
> From: Redd Liao [mailto:[EMAIL PROTECTED]]
> Sent: 22 March 2001 23:34
> To: CF-Server
> Subject: GetTemplatePath()
>
> hi,
>
> I use IIS on Win 2000.
> In my cfm file:
> I set LoginFile = "C:\Inetpub\wwwroot\cyvdb\index.cfm"
> then I use "IF" :
> <cfif NOT #GetTemplatePath()# IS "#LoginFile#">
> .........
>     <cflocation url="index.cfm" addtoken="no">
> .........
> </cfif>
>
> Question:
> I am 100% sure that #GetTemplatePath()# = #LoginFile#,
> but it always re-director the page to index.cfm
> that means that #GetTemplatePath()# is not #LoginFile#,
> but I am 100% sure that #GetTemplatePath()# = #LoginFile#,
> I use UCase(), Lcase(), LTrim() and RTrim(). It still doesn't work.
> What should I do? Thanks in advance.
>
> Redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 06:49:42 -0800
> From: "Saul G. Perez" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: Cluster cats
> Message-ID: <[EMAIL PROTECTED]>
>
> How are you adding the machines under the Cluster Cats Administrator??
> Are you following Allaire's recommendation to Cluster??
>
> Saul
>
> -----Original Message-----
> From: Alan Comeau [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 23, 2001 2:25 AM
> To: CF-Server
> Subject: Cluster cats
>
> We are trying to cluster a pair of servers which have two network cards
> in each machine, one with external IP's and one with Internal IP's.
> Cluster cats administrator reports it primary IP address as 0.0.0.0. and
> I think this is the reason the servers cannot see even themselves. All
> the DNS entries are I believe correct, we have had no trouble before
> with single or teamed network cards, but dual homeing seems t be a
> nightmare
>
> Alan Comeau
> Senior Programmer
> Vardus Internet Solutions Ltd
> 17 Heathmans Road
> London
> SW6 4TJ
> +44(0) 207 471 8899
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 15:29:09 -0000
> From: "Alan Comeau" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: Cluster cats
> Message-ID: <00b701c0b3ae$014626f0$[EMAIL PROTECTED]>
>
> We can't add the servers with Administrator, but whenever we try to add a
> server it reports that it is unreachable, even though we can ping it. We
> were wondering if CCats was trying to use the managment network card instead
> of the public side. Is this possible?
>
> Alan Comeau
> Senior Programmer
> Vardus Internet Solutions Ltd
> 17 Heathmans Road
> London
> SW6 4TJ
> +44(0) 207 471 8899
>
> ----- Original Message -----
> From: "Saul G. Perez" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 2:49 PM
> Subject: RE: Cluster cats
>
> > How are you adding the machines under the Cluster Cats Administrator??
> > Are you following Allaire's recommendation to Cluster??
> >
> > Saul
> >
> >
> > -----Original Message-----
> > From: Alan Comeau [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, March 23, 2001 2:25 AM
> > To: CF-Server
> > Subject: Cluster cats
> >
> >
> > We are trying to cluster a pair of servers which have two network cards
> > in each machine, one with external IP's and one with Internal IP's.
> > Cluster cats administrator reports it primary IP address as 0.0.0.0. and
> > I think this is the reason the servers cannot see even themselves. All
> > the DNS entries are I believe correct, we have had no trouble before
> > with single or teamed network cards, but dual homeing seems t be a
> > nightmare
> >
> > Alan Comeau
> > Senior Programmer
> > Vardus Internet Solutions Ltd
> > 17 Heathmans Road
> > London
> > SW6 4TJ
> > +44(0) 207 471 8899
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 10:35:18 -0500
> From: "Redd Liao" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: GetTemplatePath()
> Message-ID: <011c01c0b3ae$dda3e100$3900a8c0@cyvwkstat05>
>
> This way works. Thank you so much!
> but i still don't understand.
> how come i can not type the path by myself?
> how come i have to output and copy-paste?
>
> redd
>
> ----- Original Message -----
> �H���: "Kola Oyedeji" <[EMAIL PROTECTED]>
> �����: "CF-Server" <[EMAIL PROTECTED]>
> �ǰe���: Friday, March 23, 2001 AM 05:41
> �D��: RE: GetTemplatePath()
>
> > check that the loginfile does not have any trailing spaces as it must
> match
> > exactly, output
> > the result of GetTemplatePath() and paste it back into your code to be
> sure.
> >
> > HTH
> >
> > Kola
> >
> > -----Original Message-----
> > From: Redd Liao [mailto:[EMAIL PROTECTED]]
> > Sent: 22 March 2001 23:34
> > To: CF-Server
> > Subject: GetTemplatePath()
> >
> >
> > hi,
> >
> > I use IIS on Win 2000.
> > In my cfm file:
> > I set LoginFile = "C:\Inetpub\wwwroot\cyvdb\index.cfm"
> > then I use "IF" :
> > <cfif NOT #GetTemplatePath()# IS "#LoginFile#">
> > .........
> >     <cflocation url="index.cfm" addtoken="no">
> > .........
> > </cfif>
> >
> > Question:
> > I am 100% sure that #GetTemplatePath()# = #LoginFile#,
> > but it always re-director the page to index.cfm
> > that means that #GetTemplatePath()# is not #LoginFile#,
> > but I am 100% sure that #GetTemplatePath()# = #LoginFile#,
> > I use UCase(), Lcase(), LTrim() and RTrim(). It still doesn't work.
> > What should I do? Thanks in advance.
> >
> >
> > Redd
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 09:49:14 -0600
> From: kaigler <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: new topic - Session variables
> Message-ID: <[EMAIL PROTECTED]>
>
> Let's talk about something interesting.
>
> I use cookies throughout all of my sites.  I usually max out with three
> cookies.  Since most of my sites are dynamic I have a user cookie, a
> specific site number cookie, and the specific sites dynamic information
> cookie.  I always let the users know what is in the cookies I am
> keeping.  I usually only keep information regarding the development of the
> site, hex colors, pages that they can see etc.
>
> I have never switched to passing these variables through the url because I
> have always had something more critical to do.
>
> So, the topic for the day and we can carry this to next week is:
>
> How do you handle cookies/session variables?
>
> thanks,
> kaigler
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 11:14:41 -0500
> From: "Steve" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: Cluster cats
> Message-ID: <007901c0b3b4$5da7ff30$[EMAIL PROTECTED]>
>
>     You have to install the internal IP nic first. Do the DNS entries next
> for the internals.  After that you Install Clustercats.  After you get
> clustercats configured then you install the live IP.  Its been a couple of
> months since ive done this. If it doesn't work install the live Ip first.
> Ive benn using clustercats on a multi homed system for a while and honestly
> I think clustercats causes more IIS problems then solves.
> Steve
> ----- Original Message -----
> From: "Alan Comeau" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 5:25 AM
> Subject: Cluster cats
>
> > We are trying to cluster a pair of servers which have two network cards in
> each machine, one with external IP's and one with Internal IP's. Cluster
> cats administrator reports it primary IP address as 0.0.0.0. and I think
> this is the reason the servers cannot see even themselves. All the DNS
> entries are I believe correct, we have had no trouble before with single or
> teamed network cards, but dual homeing seems t be a nightmare
> >
> > Alan Comeau
> > Senior Programmer
> > Vardus Internet Solutions Ltd
> > 17 Heathmans Road
> > London
> > SW6 4TJ
> > +44(0) 207 471 8899
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 11:24:55 -0500
> From: "Vonancken, Curt (NCI)" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: HTTP 401.3 - Access denied by ACL on resource
> Message-ID: <[EMAIL PROTECTED]>
>
> I recently had this problem on NT4 and this was solution is an odd one. Make
> sure that you have a separate account logging in as the CF services. Then
> make sure your rights are given to the correct folders including your custom
> tags folder if you have any.  Now here is the odd part. Whenever I reboot my
> server I have to go into the CF admin, click on advanced security, and click
> apply. ??? I have know Idea why but it works. Otherwise it won't recognize
> that CF is on and you will get that sort of error. Good luck.....  -Curt
>
> -----Original Message-----
> From: Paul Fraser [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 16, 2001 4:59 PM
> To: CF-Server
> Subject: HTTP 401.3 - Access denied by ACL on resource
>
> Help!
>
> I am setting up ColdFusion sites on a new Win2K Server with IIS 5.0 and
> running into the above error when I access any .cfm page.
>
> Scripts and executables are enabled for the relevant Web sites. IIS has the
> appropriate Anonymous Access rights. The .cfm MIME type appears as an
> available MIME type within IIS.
>
> What am I missing? Thanks in advance for your help.
>
> Paul Fraser
> Senior Web Designer
> argir.com technology solutions
> 612.370.4242
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 11:27:04 -0500
> From: "Vonancken, Curt (NCI)" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: security
> Message-ID: <[EMAIL PROTECTED]>
>
> Get Hacking Exposed. No security person should leave home without it :)
> It's a great read too..
>
> http://www.amazon.com/exec/obidos/ASIN/0072127481/sr%3D1-2/ref%3Dsc%5Fb%5F2/
> 106-0807929-7621229/2realnetworks/107-5824642-3699757
>
> -----Original Message-----
> From: Gavin Lilley [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 14, 2001 7:06 AM
> To: CF-Server
> Subject: security
>
> I am looking into my security as I am currently getting a little worried
> about the subject. My NT servers are kept up to date with the latest patches
> and advisories but I am not really satisfied with this.
>
> Does anyone have any links to anything more substantial then Microsoft's
> guides to secure IIS & Asp and the stuff on the Allaire site?
>
> --
> Gavin Lilley
> Internet / Intranet Developer
> http://halesowen.ac.uk
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 16:48:26 -0000
> From: "Alan Comeau" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: Cluster cats
> Message-ID: <00e201c0b3b9$14d81100$[EMAIL PROTECTED]>
>
> Well give that a try thanks
>
> Alan Comeau
> Senior Programmer
> Vardus Internet Solutions Ltd
> 17 Heathmans Road
> London
> SW6 4TJ
> +44(0) 207 471 8899
>
> ----- Original Message -----
> From: "Steve" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 4:14 PM
> Subject: Re: Cluster cats
>
> >     You have to install the internal IP nic first. Do the DNS entries next
> > for the internals.  After that you Install Clustercats.  After you get
> > clustercats configured then you install the live IP.  Its been a couple of
> > months since ive done this. If it doesn't work install the live Ip first.
> > Ive benn using clustercats on a multi homed system for a while and
> honestly
> > I think clustercats causes more IIS problems then solves.
> > Steve
> > ----- Original Message -----
> > From: "Alan Comeau" <[EMAIL PROTECTED]>
> > To: "CF-Server" <[EMAIL PROTECTED]>
> > Sent: Friday, March 23, 2001 5:25 AM
> > Subject: Cluster cats
> >
> >
> > > We are trying to cluster a pair of servers which have two network cards
> in
> > each machine, one with external IP's and one with Internal IP's. Cluster
> > cats administrator reports it primary IP address as 0.0.0.0. and I think
> > this is the reason the servers cannot see even themselves. All the DNS
> > entries are I believe correct, we have had no trouble before with single
> or
> > teamed network cards, but dual homeing seems t be a nightmare
> > >
> > > Alan Comeau
> > > Senior Programmer
> > > Vardus Internet Solutions Ltd
> > > 17 Heathmans Road
> > > London
> > > SW6 4TJ
> > > +44(0) 207 471 8899
> > >
> > >
> > >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 08:55:28 -0800
> From: "Perez, Saul" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: Cluster cats
> Message-ID: <[EMAIL PROTECTED]>
>
> What OS are you using?? And make sure you specify the IP Alias to the Homed
> or Primary IP address(NIC) on the Machine!  Is this the first time you have
> used CC?
>
> If this is the first time you are using Cluster Cats, here are some
> requirements for NT 4:
> *Streams Environment Installed
> *Two IP Addresses (One Homed on the Machine and the Other a virtual site
> mirroring the first)
> *After IIS recognizes the second IP address remove it from the NIC card
> *Then try pinging the virtual IP
> *If you are successful use the virtual IP - (Alias Name) to add through the
> CC Administrator
>
> Repeat for both servers.
>
> Good Luck
>
> Saul
>
> -----Original Message-----
> From: Alan Comeau [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 23, 2001 7:29 AM
> To: CF-Server
> Subject: Re: Cluster cats
>
> We can't add the servers with Administrator, but whenever we try to add a
> server it reports that it is unreachable, even though we can ping it. We
> were wondering if CCats was trying to use the managment network card instead
> of the public side. Is this possible?
>
> Alan Comeau
> Senior Programmer
> Vardus Internet Solutions Ltd
> 17 Heathmans Road
> London
> SW6 4TJ
> +44(0) 207 471 8899
>
> ----- Original Message -----
> From: "Saul G. Perez" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 2:49 PM
> Subject: RE: Cluster cats
>
> > How are you adding the machines under the Cluster Cats Administrator??
> > Are you following Allaire's recommendation to Cluster??
> >
> > Saul
> >
> >
> > -----Original Message-----
> > From: Alan Comeau [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, March 23, 2001 2:25 AM
> > To: CF-Server
> > Subject: Cluster cats
> >
> >
> > We are trying to cluster a pair of servers which have two network cards
> > in each machine, one with external IP's and one with Internal IP's.
> > Cluster cats administrator reports it primary IP address as 0.0.0.0. and
> > I think this is the reason the servers cannot see even themselves. All
> > the DNS entries are I believe correct, we have had no trouble before
> > with single or teamed network cards, but dual homeing seems t be a
> > nightmare
> >
> > Alan Comeau
> > Senior Programmer
> > Vardus Internet Solutions Ltd
> > 17 Heathmans Road
> > London
> > SW6 4TJ
> > +44(0) 207 471 8899
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 12:00:18 -0500
> From: "Robert Sinclair" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: HTTP 401.3 - Access denied by ACL on resource
> Message-ID: <000501c0b3ba$bd6e5f30$[EMAIL PROTECTED]>
>
> i just had this for the past 2 days myself.. I ended up assigning the cf
> services to start under the administrator's acct.. that worked until i
> rebooted... then i went in and specifically assigned the internet guest user
> acct. to the windows\system, windows\system32\, windows\system32\inetserv,
> and someplace else... all this info. is in the MS knowledgebase.. just look
> for 401.3 for IIS4... you'll see it all there and the specific details and
> permissions....
>
> -----Original Message-----
> From: Vonancken, Curt (NCI) [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 23, 2001 11:25 AM
> To: CF-Server
> Subject: RE: HTTP 401.3 - Access denied by ACL on resource
>
> I recently had this problem on NT4 and this was solution is an odd one. Make
> sure that you have a separate account logging in as the CF services. Then
> make sure your rights are given to the correct folders including your custom
> tags folder if you have any.  Now here is the odd part. Whenever I reboot my
> server I have to go into the CF admin, click on advanced security, and click
> apply. ??? I have know Idea why but it works. Otherwise it won't recognize
> that CF is on and you will get that sort of error. Good luck.....  -Curt
>
> -----Original Message-----
> From: Paul Fraser [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 16, 2001 4:59 PM
> To: CF-Server
> Subject: HTTP 401.3 - Access denied by ACL on resource
>
> Help!
>
> I am setting up ColdFusion sites on a new Win2K Server with IIS 5.0 and
> running into the above error when I access any .cfm page.
>
> Scripts and executables are enabled for the relevant Web sites. IIS has the
> appropriate Anonymous Access rights. The .cfm MIME type appears as an
> available MIME type within IIS.
>
> What am I missing? Thanks in advance for your help.
>
> Paul Fraser
> Senior Web Designer
> argir.com technology solutions
> 612.370.4242
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 08:58:15 -0800
> From: "Perez, Saul" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: Cluster cats
> Message-ID: <[EMAIL PROTECTED]>
>
> True,  Look forward to Windows 2000 Load Balancing!!!! Easy and Reliable!
> (Not sure if its the right word) But anyways it works.
>
> -----Original Message-----
> From: Steve [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 23, 2001 8:15 AM
> To: CF-Server
> Subject: Re: Cluster cats
>
>     You have to install the internal IP nic first. Do the DNS entries next
> for the internals.  After that you Install Clustercats.  After you get
> clustercats configured then you install the live IP.  Its been a couple of
> months since ive done this. If it doesn't work install the live Ip first.
> Ive benn using clustercats on a multi homed system for a while and honestly
> I think clustercats causes more IIS problems then solves.
> Steve
> ----- Original Message -----
> From: "Alan Comeau" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 5:25 AM
> Subject: Cluster cats
>
> > We are trying to cluster a pair of servers which have two network cards in
> each machine, one with external IP's and one with Internal IP's. Cluster
> cats administrator reports it primary IP address as 0.0.0.0. and I think
> this is the reason the servers cannot see even themselves. All the DNS
> entries are I believe correct, we have had no trouble before with single or
> teamed network cards, but dual homeing seems t be a nightmare
> >
> > Alan Comeau
> > Senior Programmer
> > Vardus Internet Solutions Ltd
> > 17 Heathmans Road
> > London
> > SW6 4TJ
> > +44(0) 207 471 8899
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 10:01:27 -0800 (PST)
> From: Tariq Ahmed <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: new topic - Session variables
> Message-ID: <Pine.GSO.4.21.0103230912580.4231-100000@venom>
>
> > I have never switched to passing these variables through the url because I
> > have always had something more critical to do.
> >
> > So, the topic for the day and we can carry this to next week is:
> >
> > How do you handle cookies/session variables?
>
>         That's a pretty broad subject. I normally don't use that many
> cookie variables. I use cookies just as a method for restoring
> state/identification of the user so they don't need to log in again, ie
> some kind of SessionKey. So that if the user comes back, and their Session
> vars are gone, I check the SessionKey and the Username in the database and
> if they match I can automatically restore their state (via Session
> vars). If the sessionkey has expired, and the session vars are still valid
> then the sessionkey is updated. Otherwise they have to log in again to
> have access to the extra stuff.
>
>         Session vars are more convenient and faster to use. As well they
> can store more complex data types, unlike cookies. CPU power is cheap. RAM
> is cheap. Making database queries is not cheap, you take a huge relative
> performance hit everytime you do that. So if you were only using cookie
> vars then things you would have to keep retrieving from the database,
> you'd have to keep doing over and over again if your objects needed the
> same complex information.
>
>       Tariq Ahmed - [EMAIL PROTECTED] - ICQ H:6308515/W:43686521
>          TIBCO Finance Technology - Web Group - Senior Web Engineer
>          Work: 650-461-3472   Cell: 650-799-6636   Fax: 650-461-3003
>                  3375 Hillview Avenue. Palo Alto, CA. 94304.
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 13:11:07 -0600
> From: kaigler <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: new topic - Session variables
> Message-ID: <[EMAIL PROTECTED]>
>
> I was beginning to think no one was going to reply.
>
> I store all of my data in cookies so that I do not have to retrieve the
> same data over and over as you stated.
>
> For example, on one of my sites users can only hit the pages that they have
> paid for.  So, when they login the first thing I do is set a cookie that
> lists all of the pages that they can hit.
>
> I also store what layout the user has selected as well as any color
> variables I need.  But once I store them I do not hit the database again
> unless they make a change to their preferences.
>
> So what you are saying is that you are passing these session variables
> through the url on every page request?  And that you find this much more
> effective then storing this data in cookies?
>
> kaigler
>
> At 10:01 AM 3/23/2001 -0800, you wrote:
> > > I have never switched to passing these variables through the url because I
> > > have always had something more critical to do.
> > >
> > > So, the topic for the day and we can carry this to next week is:
> > >
> > > How do you handle cookies/session variables?
> >
> >
> >         That's a pretty broad subject. I normally don't use that many
> >cookie variables. I use cookies just as a method for restoring
> >state/identification of the user so they don't need to log in again, ie
> >some kind of SessionKey. So that if the user comes back, and their Session
> >vars are gone, I check the SessionKey and the Username in the database and
> >if they match I can automatically restore their state (via Session
> >vars). If the sessionkey has expired, and the session vars are still valid
> >then the sessionkey is updated. Otherwise they have to log in again to
> >have access to the extra stuff.
> >
> >         Session vars are more convenient and faster to use. As well they
> >can store more complex data types, unlike cookies. CPU power is cheap. RAM
> >is cheap. Making database queries is not cheap, you take a huge relative
> >performance hit everytime you do that. So if you were only using cookie
> >vars then things you would have to keep retrieving from the database,
> >you'd have to keep doing over and over again if your objects needed the
> >same complex information.
> >
> >
> >
> >       Tariq Ahmed - [EMAIL PROTECTED] - ICQ H:6308515/W:43686521
> >          TIBCO Finance Technology - Web Group - Senior Web Engineer
> >          Work: 650-461-3472   Cell: 650-799-6636   Fax: 650-461-3003
> >                  3375 Hillview Avenue. Palo Alto, CA. 94304.
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 14:58:19 -0500
> From: "Redd Liao" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: CFMAIL
> Message-ID: <01d201c0b3d3$9bbfbf00$3900a8c0@cyvwkstat05>
>
> hi,
>
> 1. How can I also put name in front of e-mail address in header?
>     like:  Redd < [EMAIL PROTECTED] >
> 2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> Thanks in advance!
>
> Redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 12:11:20 -0800 (PST)
> From: Tariq Ahmed <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: new topic - Session variables
> Message-ID: <Pine.GSO.4.21.0103231207330.4231-100000@venom>
>
> > So what you are saying is that you are passing these session variables
> > through the url on every page request?  And that you find this much more
> > effective then storing this data in cookies?
>
>         Session variables don't need to be passed, they're persistent for
> the life of the variable (set up in CF Administrator). If you go on
>
> page1.cfm:
>   <CFSET Session.FirstName = "Joe">
>
> You can go in page2.cfm and
> <CFOUTPUT>#Session.FirstName#</CFOUTPUT>
>
>         and it will work (assuming you have session vars turned on, and
> both pages are part of the same app).
>
>         They're like global variables (ie Application vars) except they're
> specific to a user (in the context of a browser session).
>
>         Like how would you pass a Structure or an Array in a cookie or
> URL. You would have to serialize it, which is super complicated and not
> worth the trouble.
>
>       Tariq Ahmed - [EMAIL PROTECTED] - ICQ H:6308515/W:43686521
>          TIBCO Finance Technology - Web Group - Senior Web Engineer
>          Work: 650-461-3472   Cell: 650-799-6636   Fax: 650-461-3003
>                  3375 Hillview Avenue. Palo Alto, CA. 94304.
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 14:59:57 -0600
> From: kaigler <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: CFMAIL
> Message-ID: <[EMAIL PROTECTED]>
>
> CFMAIL FROM="#username# <#useremail#>"
>          TO="#to#"
>          SUBJECT="#Subject#">
>
> I use this in my code
>
> kaigler
>
> At 02:58 PM 3/23/2001 -0500, you wrote:
> >hi,
> >
> >1. How can I also put name in front of e-mail address in header?
> >     like:  Redd < [EMAIL PROTECTED] >
> >2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> >Thanks in advance!
> >
> >Redd
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 14:11:19 -0700
> From: "Jim McAtee" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: CFMAIL
> Message-ID: <01ba01c0b3dd$ce349230$352fa8ce@Jim>
>
> There are a number of different formats you might use, but you'll have to
> test them to see if they work on the particular SMTP server you use for
> outgoing CFMAIL.  Be careful if you or your hosting provider changes
> servers, it could break outgoing mail.
>
> I've found the following format works with several SMTP servers, including
> Microsoft IIS 4 SMTP, Rockliffe MailSite, and Sendmain on Linux.  The full
> name must be listed second and must be separated by a space from the email
> address.
>
> <cfmail from="[EMAIL PROTECTED] (The System Administrator)"
>         to="#email_address# (#full_name#)"
>         subject="Whatever">
> Your message.
> </cfmail>
>
> I'm guessing that the number of to:, cc:, bcc: addresses is also dependant
> on the SMTP server.  The limitation is many not be in the number of
> addresses, but more likely in the length of the fields.
>
> Jim
>
> ----- Original Message -----
> From: "Redd Liao" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 12:58 PM
> Subject: CFMAIL
>
> > hi,
> >
> > 1. How can I also put name in front of e-mail address in header?
> >     like:  Redd < [EMAIL PROTECTED] >
> > 2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> > Thanks in advance!
> >
> > Redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 16:26:40 -0500
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: CFMAIL
> Message-ID: <062601c0b3df$f33c5430$[EMAIL PROTECTED]>
>
> 1.
>
> Something like: to="""Joe Smith""" <[EMAIL PROTECTED]>"
>
> 2.
>
> I think the limit is 40 recipients in cf4.0 and lower.  Not sure about 4.5
> or 5.0
>
> HTH,
>
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc.
> www.CoolFusion.com
> 631-737-4668 x101
> inFusion Mail Server (iMS) - the World's most configurable mail server
> Get your free copy of iMS POST-SE Server from CoolFusion!
>
> ----- Original Message -----
> From: "Redd Liao" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 2:58 PM
> Subject: CFMAIL
>
> > hi,
> >
> > 1. How can I also put name in front of e-mail address in header?
> >     like:  Redd < [EMAIL PROTECTED] >
> > 2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> > Thanks in advance!
> >
> > Redd
> >
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 16:57:25 -0500
> From: "Redd Liao" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: using CFMAIL to send out thousands of mails
> Message-ID: <024b01c0b3e4$3f11f230$3900a8c0@cyvwkstat05>
>
> hi,
>
> Has anyone ever sent out 3000+ e-mails via CF server/IIS(smtp) on win 2k?
> Is CFMAIL/CF server/IIS powerful enough to do that?
> I need to get 3000+ e-mail address from Access file (mdb),
> and then:
> < cfmail to="#e_mail_address#" ............ >
>
> dear #name# .......................
>
> < / cfmail >
>
> but i never did that before,
> so i am not sure if it's OK for 3000+ e-mails.
> any ideas? thanks!
>
> redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 17:01:00 -0500
> From: George Farnsworth <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: new topic - Session variables
> Message-ID: <[EMAIL PROTECTED]>
>
> Of course session variables depend on cookies too.  CF sets a couple of
> its own and thats how it "knows" which user is hitting the page.  I am
> finding more and more user hysteria about cookies, leading to people
> turning them off.  If they do turn cookies off I start getting calls
> about "my password doesn't work" because the code thinks the user is not
> logged on if Session.LoggedOn is not defined.
>
> The alternative is to pass the cookie data through URL and form
> variables instead.  A major pain in the ass.  In an environment like an
> intranet I *think* you could use the user's IP address (a CGI variable)
> to keep track of him without cookies, but I haven't tried it.
>
> George Farnsworth
>
> Tariq Ahmed wrote:
> >
> > > So what you are saying is that you are passing these session variables
> > > through the url on every page request?  And that you find this much more
> > > effective then storing this data in cookies?
> >
> >         Session variables don't need to be passed, they're persistent for
> > the life of the variable (set up in CF Administrator). If you go on
> >
> > page1.cfm:
> >   <CFSET Session.FirstName = "Joe">
> >
> > You can go in page2.cfm and
> > <CFOUTPUT>#Session.FirstName#</CFOUTPUT>
> >
> >         and it will work (assuming you have session vars turned on, and
> > both pages are part of the same app).
> >
> >         They're like global variables (ie Application vars) except they're
> > specific to a user (in the context of a browser session).
> >
> >         Like how would you pass a Structure or an Array in a cookie or
> > URL. You would have to serialize it, which is super complicated and not
> > worth the trouble.
> >
> >       Tariq Ahmed - [EMAIL PROTECTED] - ICQ H:6308515/W:43686521
> >          TIBCO Finance Technology - Web Group - Senior Web Engineer
> >          Work: 650-461-3472   Cell: 650-799-6636   Fax: 650-461-3003
> >                  3375 Hillview Avenue. Palo Alto, CA. 94304.
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 17:11:16 -0500
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: CFMAIL
> Message-ID: <06ac01c0b3e6$2eb333c0$[EMAIL PROTECTED]>
>
> Actually - to conform to standards it should be:
>
> > CFMAIL FROM="""#username#"" <#useremail#>"
> >          TO="#to#"
> >          SUBJECT="#Subject#">
>
> Regards,
>
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc.
> www.CoolFusion.com
> 631-737-4668 x101
> inFusion Mail Server (iMS) - the World's most configurable mail server
> Get your free copy of iMS POST-SE Server from CoolFusion!
>
> ----- Original Message -----
> From: "kaigler" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 3:59 PM
> Subject: Re: CFMAIL
>
> > CFMAIL FROM="#username# <#useremail#>"
> >          TO="#to#"
> >          SUBJECT="#Subject#">
> >
> > I use this in my code
> >
> > kaigler
> >
> >
> > At 02:58 PM 3/23/2001 -0500, you wrote:
> > >hi,
> > >
> > >1. How can I also put name in front of e-mail address in header?
> > >     like:  Redd < [EMAIL PROTECTED] >
> > >2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> > >Thanks in advance!
> > >
> > >Redd
> > >
> > >
> > >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 17:22:44 -0600
> From: "Larry Juncker" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: RE: using CFMAIL to send out thousands of mails
> Message-ID: <[EMAIL PROTECTED]>
>
> I just sent out 5693 emails from an access database this afternoon running
> IIS 4.0 SP6 in three minutes.
>
> Larry Juncker
> Senior Cold Fusion Developer
> Heartland Communications Group, Inc.
>
> -----Original Message-----
> From: Redd Liao [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 23, 2001 3:57 PM
> To: CF-Server
> Subject: using CFMAIL to send out thousands of mails
>
> hi,
>
> Has anyone ever sent out 3000+ e-mails via CF server/IIS(smtp) on win 2k?
> Is CFMAIL/CF server/IIS powerful enough to do that?
> I need to get 3000+ e-mail address from Access file (mdb),
> and then:
> < cfmail to="#e_mail_address#" ............ >
>
> dear #name# .......................
>
> < / cfmail >
>
> but i never did that before,
> so i am not sure if it's OK for 3000+ e-mails.
> any ideas? thanks!
>
> redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 17:43:39 -0600
> From: Guillermo Dewey <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: using CFMAIL to send out thousands of mails
> Message-ID: <[EMAIL PROTECTED]>
>
> yes you can . we use to loop this files thousands of times but you will
> probably get the 0 k size file bug that will make proccesors go to 90% of
> its capacity. this happens ones every 20 times more or less but it
> happens.. its a known but that will be solved on 5.0 according to Allaire
> (this is what I read somewhere). now we use cfx_imsmail its a custom tag
> that puts email on the out directory of our mail server with out using
> smtp.. its fast
>
> regards
>
> At 04:57 p.m. 23/03/01 -0500, you wrote:
> >hi,
> >
> >Has anyone ever sent out 3000+ e-mails via CF server/IIS(smtp) on win 2k?
> >Is CFMAIL/CF server/IIS powerful enough to do that?
> >I need to get 3000+ e-mail address from Access file (mdb),
> >and then:
> >< cfmail to="#e_mail_address#" ............ >
> >
> >dear #name# .......................
> >
> >< / cfmail >
> >
> >but i never did that before,
> >so i am not sure if it's OK for 3000+ e-mails.
> >any ideas? thanks!
> >
> >redd
> >
> >
> >
> >
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Fri, 23 Mar 2001 16:50:13 -0700
> From: "Jim McAtee" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: CFMAIL
> Message-ID: <025b01c0b3f4$013449d0$352fa8ce@Jim>
>
> Howie,
>
> Can you point me to an RFC that covers this?  I've been grappling with this
> the past week as we deal with developing applications that use CFMAIL with a
> variety of SMTP servers.  The format I posted earlier works by trial and
> error.  I wouldn't mind at all finding a spec on this.
>
> Jim
>
> ----- Original Message -----
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: "CF-Server" <[EMAIL PROTECTED]>
> Sent: Friday, March 23, 2001 3:11 PM
> Subject: Re: CFMAIL
>
> > Actually - to conform to standards it should be:
> >
> > > CFMAIL FROM="""#username#"" <#useremail#>"
> > >          TO="#to#"
> > >          SUBJECT="#Subject#">
> >
> > Regards,
> >
> > Howie Hamlin - inFusion Project Manager
> > On-Line Data Solutions, Inc.
> > www.CoolFusion.com
> > 631-737-4668 x101
> > inFusion Mail Server (iMS) - the World's most configurable mail server
> > Get your free copy of iMS POST-SE Server from CoolFusion!
> >
> > ----- Original Message -----
> > From: "kaigler" <[EMAIL PROTECTED]>
> > To: "CF-Server" <[EMAIL PROTECTED]>
> > Sent: Friday, March 23, 2001 3:59 PM
> > Subject: Re: CFMAIL
> >
> >
> > > CFMAIL FROM="#username# <#useremail#>"
> > >          TO="#to#"
> > >          SUBJECT="#Subject#">
> > >
> > > I use this in my code
> > >
> > > kaigler
> > >
> > >
> > > At 02:58 PM 3/23/2001 -0500, you wrote:
> > > >hi,
> > > >
> > > >1. How can I also put name in front of e-mail address in header?
> > > >     like:  Redd < [EMAIL PROTECTED] >
> > > >2. How many e-mail address i can put in "To" , "CC" and "bcc"?
> > > >Thanks in advance!
> > > >
> > > >Redd
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Structure your ColdFusion code with Fusebox. Get the official book at 
>http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> End of CF-Server-List V1 #112
> *****************************
> ------------------------------------------------------------------------------
> To unsubscribe, send a message to [EMAIL PROTECTED] with 
>'unsubscribe' in the body or visit the list page at www.houseoffusion.com

--
  __________________________________________

  Greg Hedgepath
  CF Hosting Inc.
  [EMAIL PROTECTED]
  ICQ# 290276

  The UN.COMmon ColdFusion Hosting Company
  http://www.CFHosting.com

  US Voice 770-982-8382
  Fax 603-761-6220
  __________________________________________


------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with 
'unsubscribe' in the body or visit the list page at www.houseoffusion.com

Reply via email to