in reply to Re: Trouble with sending more than one attachment
in thread Trouble with sending more than one attachment

Got it. Do you have any idea of how to attach more than one? Thanks
  • Comment on Re^2: Trouble with sending more than one attachment

Replies are listed 'Best First'.
Re^3: Trouble with sending more than one attachment
by AnomalousMonk (Archbishop) on Oct 19, 2020 at 20:27 UTC
Re^3: Trouble with sending more than one attachment
by pwagyi (Monk) on Oct 26, 2020 at 06:38 UTC
    you need to loop over each file.
    $att_part = MIME::Lite::->new( 'Type' => 'application/octet-stream', 'Encoding' => 'base64', 'Path' => shift @files, ); $msg->attach($html_part); $msg->attach($att_part); # assuming all files are same type and encoding, for my $file(@files) { $msg->attach( 'Type' => ......, 'Encoding' => ......, 'Path' => $file, ); }