RE: RE: header data being inserted into message

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Richard,

Thanks for the response, however I do not want to have to use any special
classes or other software... I want to get it working just using the basic
php functions, which should be possible as far as I understand the php
documentation... if I keep finding that I can't get it working then maybe
I'll go to majordomo2.

Anyone else have some advice for me here?

Thanks,
Ben

-----Original Message-----
From: Richard Correia [mailto:php5perl@xxxxxxxxx]
Sent: Tuesday, January 17, 2006 12:37 PM
To: ET Support
Cc: php-general@xxxxxxxxxxxxx
Subject: Re:  RE: header data being inserted into message


Hey,

You can use the readymase mailer class from
http://www.weberdev.com/get_example-462.html

and

http://www.weberdev.com/get_example-3724.html

Thanks
Richard


On 1/17/06, ET Support <support@xxxxxxxxxxxxxxx> wrote:
Hello all,

I am having a problem using PHP's mail function to send mail via BCC to
multiple recipients. Here's my code;
--------------------------------------
$get_emails = pg_exec($dbh,"SELECT email FROM mailing_list WHERE conf = 1");
$count = pg_numrows($get_emails);
$bcc_count = $envelope_count = 0;
$bcc_limit = 200;
$subject = $body = 'test message';
$from = 'support@xxxxxxxxxxxxxxx';
$header = "From: $from\r\n";
for($x = 0; $x < $count; $x++) {
       $email = pg_result($get_emails,$x,0);
       if($bcc_count >= $bcc_limit) {
               if($x > 0) {
                       $envelope_count++;
                       mail($from,$subject,$body,$headers);
               }
               $headers = $header . "Bcc: $email\r\n";
               $bcc_count = 1;
       } else {
               $headers .= "Bcc: $email\r\n";
               $bcc_count++;
       }
}
# send the last envelope
mail($from,$subject,$body,$headers);
--------------------------------------

The problem is that for some recipients they get a message body like this;

--------------------------------------
Message-Id: < 20060116170640.424CFA51997@xxxxxxxxxxxxxxx>
Date: Mon, 16 Jan 2006 17:06:40 +0000 (GMT)

test message
--------------------------------------

Any idea why those headers are being inserted into the message body and how
that can be prevented?

Thanks,
Ben King
support@xxxxxxxxxxxxxxx

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

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux