Re: How to send results to more than one recipient

2004-01-20 Thread James Edward Gray II
On Jan 20, 2004, at 8:47 AM, Sander wrote: James, Thanks for the response but that doesn't seem to work either. Maybe it would be easier just to create a distribution list on the email server and just put that address in my script. That's definitely a way to go. Other choices: Send us the par

RE: How to send results to more than one recipient

2004-01-20 Thread Bradley A. Brown
; [EMAIL PROTECTED] Subject: RE: How to send results to more than one recipient > > Thanks for the response but that doesn't seem to work either. > Maybe it would be easier just to create a distribution list > on the email server and just put that address in my script. &g

RE: How to send results to more than one recipient

2004-01-20 Thread Dan Muey
> > Thanks for the response but that doesn't seem to work either. > Maybe it would be easier just to create a distribution list > on the email server and just put that address in my script. > It doesn't work, looping over an array does not work? for(@emaillist) { # pipe $_ to qmail i

Re: How to send results to more than one recipient

2004-01-20 Thread Sander
"James Edward Gray II" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Jan 19, 2004, at 3:23 PM, Sander wrote: > > > I have a simple form that I have been using for a while, but now I > > need to > > send the data to two email addresses. What is the simplest way to > > achieve > >

Re: How to send results to more than one recipient

2004-01-19 Thread James Edward Gray II
On Jan 19, 2004, at 3:23 PM, Sander wrote: I have a simple form that I have been using for a while, but now I need to send the data to two email addresses. What is the simplest way to achieve this? I have tried various combinations and can't seem to figure it out. $emailId = '[EMAIL PROTECTED

How to send results to more than one recipient

2004-01-19 Thread Sander
I have a simple form that I have been using for a while, but now I need to send the data to two email addresses. What is the simplest way to achieve this? I have tried various combinations and can't seem to figure it out. $emailId = '[EMAIL PROTECTED]' '[EMAIL PROTECTED]'; ??? Here is my code ri