in reply to sending the same email more than once without connecting to smtp for every To adress
Hope this helps..my $smtp = Net::SMTP->new($srv); $smtp->mail('root@localhost'); $smtp->to(@emails); $smtp->data(); $smtp->datasend("Your data goes here.\n"); ....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: sending the same email more than once without connecting to smtp for every To adress
by pitbull3000 (Beadle) on Aug 25, 2001 at 03:31 UTC | |
by rchiav (Deacon) on Aug 25, 2001 at 03:43 UTC |