in reply to Re: adding multiple attachments to email
in thread adding multiple attachments to email

Thank you Aitap for your help, I have updated the code however I recieve the following error: syntax error at test_email.pl line 503, near "msg" this is the code i have used :
send_email(); sub send_email { my $sender=new Mail::Sender({from =>$email_sender, fake_from =>$email_sender,smtp => 'mail.test.com'}); $sender->MailFile({to => $email_recipient, subject => $email_subject, file=> [ $outfile, $file1 ] msg => $email_body}); }
edit - i added a comma after the file=> [ $outfile, $file1 ], and the syntax error is not showing anymore, however I'm not receiving any emails either ?!

Replies are listed 'Best First'.
Re^3: adding multiple attachments to email
by aitap (Curate) on Apr 30, 2013 at 09:03 UTC

    Sorry for the comma - I edited my message shortly after posting it and noticing the comma's absence.

    Try adding 'debug' parameter to the constructor to debug your messages.

Re^3: adding multiple attachments to email
by perlnoobster (Sexton) on Apr 30, 2013 at 09:01 UTC
    UPDATE- It works! just a bit slow in generating the email though:) Thank you!