RE: [PHP-DB] mail() - is there a limit?

2001-09-30 Thread Luke Muszkiewicz
olinux: > If I use set_time_limit(0); - will this override my hosts > timeout setting if > there is one? The short answer is yes, but please see http://www.php.net/manual/en/function.set-time-limit.php for more information. Good luck! -luke Luke Muszkiewicz Pure Development, LLC http://purede

RE: [PHP-DB] mail() - is there a limit?

2001-09-27 Thread Luke Muszkiewicz
olinux: I do not know the answer to your question. However, I would alternatively suggest that you send the email to each person individually. That is to say, loop through your recipient array and use mail() to send the message to each recipient, as opposed to creating a bcc array and then sendi

Re: [PHP-DB] mail() - is there a limit?

2001-09-10 Thread Justin Buist
I would doubt there's a limit in any of the mail RFCs -- but I've seen some mailservers limit the number of Cc's or Bcc's you can do on a single message. It's all up to the admin of the mailserver I suppose. Justin Buist Trident Technology, Inc. 4700 60th St. SW, Suite 102 Grand Rapids, MI 4951

[PHP-DB] mail() - is there a limit?

2001-09-08 Thread olinux
I am using a script that grabs about 100 emails from a database, loops thru and writes them to $bcc Then I use a single mail() to send a msg to everyone in the $bcc Is there a maximum nuber of emails that i can mail to this way? Thanks, olinux __