in reply to Sending msgs with MIME::Lite vs NET::SMTP to a list of addrs

Looking at the MIME::Lite documentation, it seems you can pass an array reference to the add() method. Otherwise, you might follow the doc example for the Cc field:
my $msg = MIME::Lite->new( From => 'someaddr@here.com', To => join(',', @$addrs), Subject => 'Subject Text', Type => 'TEXT', Data => $$Lusertxt, );
Your mileage may vary. I don't have it installed, and I'm super lazy, but at least you got a response. :)

Replies are listed 'Best First'.
Re: Re: Sending msgs with MIME::Lite vs NET::SMTP to a list of addrs
by cacharbe (Curate) on Sep 20, 2001 at 16:12 UTC
    A HA!!! Missed that reference.

    Thank you.

    C-.