RE: [PHP] bulk e-mails

2001-10-03 Thread Maxim Maletsky \(PHPBeginner.com\)

You've already had a nice answer. Look for ezmlm. It is a very powerful
open source mailing manager.

You could store the data in mySQL database and administer it in your
favorite way via PHP or whatever. Then, loop your PHP code and (if you
need this of course) copy all the emails of users you need to send it to
into a temporary table. And run ezmlm to send emails. You can do it all
very automatically and maybe even in a better way that what I said.
Ezmlm is the greatest, with lots of features and add-ons. Even this list
uses it.

Maxim Maletsky
www.PHPBeginner.com



-Original Message-
From: Tyler Longren [mailto:[EMAIL PROTECTED]] 
Sent: mercoledì 3 ottobre 2001 5.05
To: PHP-General
Subject: [PHP] bulk e-mails


Hello everyone,

I have a few questions about sending bulk e-mails.  We have a client who
has some customers that are signing up to win a prize in a contest.
These users can also join the e-mail club.  What's the best way to send
many, many e-mails?

I don't want to send an e-mail to each individual user (that can be
tough on the server).  I also don't want to just make a bunch of entries
in the To: header.  I don't want people to be able to see who else is on
the mailing list.  Could I solve that problem by putting their e-mails
in the bcc section of the header?

Any other ideas are appreciated...thanks,
Tyler Longren



-- 
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]



--
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] bulk e-mails

2001-10-02 Thread Dave Watkinson

I use a database (MySQL). I retrieve the list of people to send to and
then send one email at a time while looping through the results. Usually
it's a couple of hundred at a time, not sure how many you mean by many
many!!!

Hope this helped!

Dave


-Original Message-
From: Tyler Longren [mailto:[EMAIL PROTECTED]]
Sent: 03 October 2001 04:05
To: PHP-General
Subject: [PHP] bulk e-mails


Hello everyone,

I have a few questions about sending bulk e-mails.  We have a client who
has
some customers that are signing up to win a prize in a contest.  These
users
can also join the e-mail club.  What's the best way to send many, many
e-mails?

I don't want to send an e-mail to each individual user (that can be
tough on
the server).  I also don't want to just make a bunch of entries in the
To:
header.  I don't want people to be able to see who else is on the
mailing
list.  Could I solve that problem by putting their e-mails in the bcc
section of the header?

Any other ideas are appreciated...thanks,
Tyler Longren



-- 
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]


--
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] bulk e-mails

2001-10-02 Thread Jack Dempsey

check out the archives and google--there's lots of info on things like
qmail,ezmlm, and the topic of bulk emails

jack

-Original Message-
From: Tyler Longren [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 02, 2001 11:05 PM
To: PHP-General
Subject: [PHP] bulk e-mails


Hello everyone,

I have a few questions about sending bulk e-mails.  We have a client who has
some customers that are signing up to win a prize in a contest.  These users
can also join the e-mail club.  What's the best way to send many, many
e-mails?

I don't want to send an e-mail to each individual user (that can be tough on
the server).  I also don't want to just make a bunch of entries in the To:
header.  I don't want people to be able to see who else is on the mailing
list.  Could I solve that problem by putting their e-mails in the bcc
section of the header?

Any other ideas are appreciated...thanks,
Tyler Longren



--
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]



-- 
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] bulk e-mails

2001-10-02 Thread Mukul Sabharwal

Hi,

Well to reach the customers, each and every, you would
have to send it to each and everybody, very simple.

Ofcourse, it's not the most nice job the server can
do, but your emails say 20K each, and 10,000 users,
isn't a very rough job.

You could essentially loop through the user record and
send emails, which would make the To field, only show
the recipients address.

Maybe you could like put a url in to the message, and
ask the users to come on there, and read the message.
So that you aren't sending as much KB's.

Hope that helps.

=
*
Know more about me:
http://www.geocities.com/mimodit
*

__
Do You Yahoo!?
Listen to your Yahoo! Mail messages from any phone.
http://phone.yahoo.com

-- 
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]