Help for this page

Select Code to Download


  1. or download this
    push @attach_list, 'Bach.jpg';
    push @attach_list, 'workshop notes.pdf', 'Booking form.pdf';
    push @attach_list, qw(testaaa.xls testx.xlsx wordtest.docx); # qw() on
    +ly if the file names don't have spaces in them
    
  2. or download this
    for $to_em (@to_email_list) {
       ...
       $smtp->to($to_em);
       ...
    }