Re: [PHP] One mail function, multiple recipients

2002-10-28 Thread dwalker
mistaken about service providers name because I change and redirect my mail on the fly to avoid lengthy email distrubances. -Original Message- From: Manuel Lemos <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, October 27, 2002 5:10 PM Subject: Re: [PHP]

Re: [PHP] One mail function, multiple recipients

2002-10-27 Thread Manuel Lemos
u are most likely abusing. Regards, Manuel Lemos -Original Message- From: Justin French <[EMAIL PROTECTED]> To: Stephen <[EMAIL PROTECTED]>; PHP List <[EMAIL PROTECTED]> Date: Friday, October 25, 2002 7:53 PM Subject: Re: [PHP] One mail function, multiple recipients

Re: [PHP] One mail function, multiple recipients

2002-10-27 Thread dwalker
om: Justin French <[EMAIL PROTECTED]> To: Stephen <[EMAIL PROTECTED]>; PHP List <[EMAIL PROTECTED]> Date: Friday, October 25, 2002 7:53 PM Subject: Re: [PHP] One mail function, multiple recipients >instead of your while() loop calling mail() each time, use it to build a >comma

Re: [PHP] One mail function, multiple recipients

2002-10-25 Thread Justin French
instead of your while() loop calling mail() each time, use it to build a comma separated list of recipients, then pipe them into a Bcc (so as to not publicise everyone's email address), and send one email with all people in the Bcc list. UNTESTED code: Good luck -- like I said, untested code, s