Re: Emailing all pdf files in a directory

2009-11-17 Thread Jeff Pang
This module's document is very few. I think you should write with @files = to get the full path for pdf files. After that you pass the anex argument when calling the function: my $status = Mail::SendEasy::send( smtp => 'localhost' , ... anex => \...@files, ); HTH. On Nov

Re: Emailing all pdf files in a directory

2009-11-17 Thread Dermot
2009/11/16 Tiffany : > Hello, Hi, > I am not very familiar with Perl, but I am trying to use it to email > all files within a directory that have a .pdf extension using the anex > command within the Mail::SendEasy module.  I have created an array > with my filenames using @files = <*.pdf>; but I

Emailing all pdf files in a directory

2009-11-17 Thread Tiffany
Hello, I am not very familiar with Perl, but I am trying to use it to email all files within a directory that have a .pdf extension using the anex command within the Mail::SendEasy module. I have created an array with my filenames using @files = <*.pdf>; but I am not sure how to translate that ar