Re: Timeout when emailing many recipients in a script

V <[email protected]> Fri, 14 Jul 2023 09:59:43 -0700 (PDT)
Newsgroups comp.lang.php
Message-ID <[email protected]>
anglezzzzzzz.likesyou.org/a.php⠀⠀⠀⠀⠀⠀⠀ ⠀⠀
christyansworld.atwebpages.com/a.php⠀⠀⠀⠀⠀⠀⠀
youthmeetupplace.talk4fun.net/a.php⠀⠀⠀⠀⠀⠀⠀⠀
kohtumispaik3.66ghz.com/a.php⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀

Heia...........Heida pilk peale nendele............


Postita ka midagi sinna.

Siis pärast hea mul lugeda, et mu lehtedel on mõni külastaja ka !



On Monday, October 28, 2002 at 6:04:05 PM UTC+2, MORTEN HELLAND wrote:
> Hello!
> I have a mailinglist with a bit more than 1200 recipients. I'm having
> problem sending to all the recipients without getting timeout of the script.
> Does anyoine have experience with this problem and maybe a way to solve it?
> I use mySQL to read both the email and the message, but I don't think this
> should play any difference.
> This is the script I'm using for sending the messages:
> // ============================
> $fields = array( "email, id, message" );
> $res = databaseQuery( "newsletter_spool", $fields);
> while ($next = databaseGetValues ($res)) {
> mail( $next->email, "Nyhetsbrev fra Company", $next->message,
> "From:[email protected]" );
> $fields = array ("id" => $next->id);
> databaseModify ("newsletter_spool", "delete", $fields);
> $EmailsSentCount++;
> }
> // ============================