[PHP] sending to large mailing list

2001-07-16 Thread Adrian Teasdale

Hi

I have some mailing list programming which we've used for quite some time.
However, one of my clients now has 660 people on the list and we are getting
a timeout error on the script and class.

I'm using the Mime type class from Manuel Lemos

I'd like to know how other people handle large mailing lists?

Ade


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] sending to large mailing list

2001-07-16 Thread Richard Heyes

 I have some mailing list programming which we've used for 
 quite some time.
 However, one of my clients now has 660 people on the list and 
 we are getting
 a timeout error on the script and class.

set_time_limit(0);

-- 
Richard Heyes
Passwords are like underwear: don't share them, hide them under your
keyboard, or hang them from your monitor. Above all, change them
frequently

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] sending to large mailing list

2001-07-16 Thread Adrian Teasdale

Richard

Thanks for this email.  I have done that and used flush(); on the next page.
It does seem to be taking a long time and I was wondering if people use
other methods.  For example, one of the scripts I have seen can use either
mail, sendmail, or smtp as options.  I was wondering if going direct
to sendmail would be a better approach?  The idea is that this database will
expand to quite a few thousand in the near future and I want to know that
we'll be able to handle it :)  The problem is that I cleverly added the
feature that each email has a salutation which personalized to the persons
name!

Thanks for the help

Ade


  I have some mailing list programming which we've used for
  quite some time.
  However, one of my clients now has 660 people on the list and
  we are getting
  a timeout error on the script and class.

 set_time_limit(0);



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] sending to large mailing list

2001-07-16 Thread Mark Charette

From: Adrian Teasdale [EMAIL PROTECTED]
The idea is that this database will
 expand to quite a few thousand in the near future and I want to know that
 we'll be able to handle it :)  The problem is that I cleverly added the
 feature that each email has a salutation which personalized to the persons
 name!

Honestly speaking, when mailing lists grow to (somewhere past trivial)
numbers that are large it's best to use software that is designed to be
efficient at handling those numbers of people. I use ezmlm to handle a few
lists that total about 2000 people, others use majordomo or another such
list. ezmlm has options to interface w/ mysql should you want to.

The administration, handling of bounces, etc. can overwhelm!

Mark C.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] sending to large mailing list

2001-07-16 Thread Adrian Teasdale

OK Mark

Thanks for your reply.  I'll have a look at this and see if I can use PHP
for managing the list of people, but use another app to send

Thanks again

ade

 Honestly speaking, when mailing lists grow to (somewhere past trivial)
 numbers that are large it's best to use software that is designed to be
 efficient at handling those numbers of people. I use ezmlm to handle a few
 lists that total about 2000 people, others use majordomo or another such
 list. ezmlm has options to interface w/ mysql should you want to.

 The administration, handling of bounces, etc. can overwhelm!

 Mark C.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]