Re: [PHP] Masive mail Advice

2003-01-29 Thread Alexander Skwar
So sprach Maciek Ruckgaber Bielecki am 2003-01-25 um 23:17:14 -0500 :
> mail() function is not a good option for this purpose. (the amount of mail
> to be sent may vary from 50 to 800 messages). I have considered using some

Have a look at the PHPMailer classes.  It's supposed to be ultra fast.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.biz |Jabber: [EMAIL PROTECTED]
   iso-top.biz - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 1 day 16 hours 2 minutes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Masive mail Advice

2003-01-26 Thread Maciek Ruckgaber Bielecki
Thanks a lot for your sugestions guys, and i'll have a look into phpMail
and write a prototype keeping in mind your advice about the size of
chunks and use of sleep. Just let me bother you a little bit more
if i run into trouble Michael ;-)

Thanks again guys !

--
"Few are those who see with their own eyes and feel with their own
hearts."
Albert Einstein
-
Maciek Ruckaber Bielecki







-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Masive mail Advice

2003-01-25 Thread Jason Wong
On Sunday 26 January 2003 12:17, Maciek Ruckgaber Bielecki wrote:
> Hi there Guys!
>
> I'll start to write an application which will be used to send large
> amounts of mail to users in a DB. All these mails to be sent shoul be
> personalized. Since i understand, and please correct me if im wrong, the
> mail() function is not a good option for this purpose. (the amount of mail
> to be sent may vary from 50 to 800 messages). I have considered using some
> masive mail application such majordomo or EZMLM. EZMLM is not easily
> configurable for sending personalized mail, and majordomo requires
> sendmail, (i would prefer to use qmail), i know about patches to be done
> so it works with qmail, but i dont consider them really clean.
>
> What would you guys suggest ?? 

If you haven't already done so, look in the archives -- lots of useful info 
have been repeated again and again (and again).

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
QOTD:
"Everything I am today I owe to people, whom it is now
to late to punish."
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Masive mail Advice

2003-01-25 Thread Mark Charette
It is incredibly easy to write a short little php script that edits a
template and submits it directly to qmail-inject; if you're using qmail
already php mail()/sendmail is just a wrapper to qmail-inject. I use
qmail-inject directly because it allows me to write my own VERP and process
bounces against the database.

A little Pentium 200 running Linux, MySQL, php4, and qmail with 100 queues
can more than saturate a T1 line when used for mailing that way! 800
messages isn't close to being "massive" - that many can be sent in way less
than a minute (depending on size, of course - a T1 isn't that big anymore
...).

> -Original Message-
> From: Maciek Ruckgaber Bielecki [mailto:[EMAIL PROTECTED]]
> I'll start to write an application which will be used to send large
> amounts of mail to users in a DB. All these mails to be sent shoul be
> personalized. Since i understand, and please correct me if im wrong, the
> mail() function is not a good option for this purpose. (the amount of mail
> to be sent may vary from 50 to 800 messages).


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Masive mail Advice

2003-01-25 Thread Maciek Ruckgaber Bielecki
Hi there Guys!

I'll start to write an application which will be used to send large
amounts of mail to users in a DB. All these mails to be sent shoul be
personalized. Since i understand, and please correct me if im wrong, the
mail() function is not a good option for this purpose. (the amount of mail
to be sent may vary from 50 to 800 messages). I have considered using some
masive mail application such majordomo or EZMLM. EZMLM is not easily
configurable for sending personalized mail, and majordomo requires
sendmail, (i would prefer to use qmail), i know about patches to be done
so it works with qmail, but i dont consider them really clean.

What would you guys suggest ?? should i jump into majordomo - sendmail,
or do you know something else that might be a better solution.

Thanks a lot in Advance, regards

--
"Few are those who see with their own eyes and feel with their own
hearts."
Albert Einstein
-
Maciek Ruckaber Bielecki





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php