[PHP] [mail] quetion

2002-06-28 Thread Evan
What is best: 1) calling n-times the function mail() [with n = numer of emails] or 2) calling 1 time mail() and use CC ? Or it it is the same thing? Thanks, Evan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [mail] quetion

2002-06-28 Thread Jason Wong
On Friday 28 June 2002 18:59, Evan wrote: > What is best: > 1) calling n-times the function mail() [with n = numer of emails] or > 2) calling 1 time mail() and use CC > ? > Or it it is the same thing? 1) will send mail out n times 2) will send mail out once, but everyone gets to see who the other

Re: [PHP] [mail] quetion

2002-06-28 Thread Jason Wong
On Friday 28 June 2002 21:40, Jason Wong wrote: > On Friday 28 June 2002 18:59, Evan wrote: > > What is best: > > 1) calling n-times the function mail() [with n = numer of emails] or > > 2) calling 1 time mail() and use CC > > ? > > Or it it is the same thing? > > 1) will send mail out n times > 2