Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Applying the brakes

by salva (Canon)
on May 08, 2008 at 12:10 UTC ( [id://685447]=note: print w/replies, xml ) Need Help??


in reply to Applying the brakes

As it seems that your mail server is exim, you can send the messages to it through a pipe using "batch SMTP":
open my $exim, "| exim -bS" or die; for (...) { print $exim <<'MSG'; MAIL FROM: foo@bar.com RCPT TO: doz@bar.com DATA Subject: Your Invoice To: You From: Me You have to pay 1,000,000 dollars . MSG }
If you want to parallelize, fork some processes and divide the task between them:
my $workers = 4; for my $ix (0..$workers-1) { unless (fork) { open my $fh, '<', $address_list_file_name or die; open my $exim, "| exim -bS" or die; while (<>) { next unless (($. % $workers) == $ix); send_invoice($exim, $_); } exit 0; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://685447]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-19 02:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found