Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-09 Thread Stut
Philip Thompson wrote: On 10/7/07, Stut [EMAIL PROTECTED] wrote: I would recommend avoiding the use of BCC from PHP. Why avoid Bcc from PHP? Note that this applies to all automated sending, not just from PHP. It depends on how it's sending the mail. I've come across configurations where

Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-09 Thread Daniel Brown
On 10/9/07, Stut [EMAIL PROTECTED] wrote: Philip Thompson wrote: On 10/7/07, Stut [EMAIL PROTECTED] wrote: I would recommend avoiding the use of BCC from PHP. Why avoid Bcc from PHP? Note that this applies to all automated sending, not just from PHP. It depends on how it's sending the

Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-09 Thread marek
The other possible question you might want to ask is: How will the message be formatted and sent... some services such as hotmail will flag the message as spam based on the multiple mail deliveries when used option #2. And there are also many other considerations related to spam. Instead

Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-08 Thread Philip Thompson
On 10/7/07, Stut [EMAIL PROTECTED] wrote: Martin Zvarík wrote: Hello-- I want to send email to 100+ recipients. Two choices I thought of: 1) once call mail() and use BCC, but the negative of this method is that every recipient in BCC has header To same (so I used to put my email

Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-07 Thread Per Jessen
Martin Zvarík wrote: Hello-- I want to send email to 100+ recipients. Two choices I thought of: 1) once call mail() and use BCC, but the negative of this method is that every recipient in BCC has header To same (so I used to put my email in here - not email of one of the recipients).

Re: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-07 Thread Stut
Martin Zvarík wrote: Hello-- I want to send email to 100+ recipients. Two choices I thought of: 1) once call mail() and use BCC, but the negative of this method is that every recipient in BCC has header To same (so I used to put my email in here - not email of one of the recipients). 2)

[PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-06 Thread Martin Zvarík
Hello-- I want to send email to 100+ recipients. Two choices I thought of: 1) once call mail() and use BCC, but the negative of this method is that every recipient in BCC has header To same (so I used to put my email in here - not email of one of the recipients). 2) several calls to

RE: [PHP] Sending lots of emails - 2 choices - choose the best one

2007-10-06 Thread Daevid Vincent
Message- From: Martin Zvarík [mailto:[EMAIL PROTECTED] Sent: Saturday, October 06, 2007 11:13 AM To: php-general@lists.php.net Subject: [PHP] Sending lots of emails - 2 choices - choose the best one Hello-- I want to send email to 100+ recipients. Two choices I thought of: 1