in reply to sending to multiple addressess
The answer above shows how to do it if you're happy for each recipient to see the full list of recipients in their mail headers (and be able to hit "Reply to All" in their email client).
If not, just loop through your array of addresses.
for my $address (@addresses) { my $msg = MIME::Lite->new( To => $address, ..., ); ...; # actually send the message or something }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: sending to multiple addressess
by bigup401 (Pilgrim) on May 24, 2017 at 08:48 UTC |