Re: Emailing 100+ PDFs, one at a time, to a given address

2009-05-15 Thread perryh
Glen Barber wrote: > On Thu, May 14, 2009 at 11:20 PM, Kelly Jones > wrote: > > I need to email 100s of PDFs, 1 per email, to a given address. > > > > What's the easiest way to do this? > > > > /usr/bin/Mail won't work, since > > PDFs are binary, so I must first BASE64 encode them. ... > If you c

Re: Emailing 100+ PDFs, one at a time, to a given address

2009-05-14 Thread Glen Barber
On Thu, May 14, 2009 at 11:20 PM, Kelly Jones wrote: > I need to email 100s of PDFs, 1 per email, to a given address. > > What's the easiest way to do this? > > /usr/bin/Mail won't work, since > PDFs are binary, so I must first BASE64 encode them. > > I could write a Perl script to BASE64 encode t

Emailing 100+ PDFs, one at a time, to a given address

2009-05-14 Thread Kelly Jones
I need to email 100s of PDFs, 1 per email, to a given address. What's the easiest way to do this? /usr/bin/Mail won't work, since PDFs are binary, so I must first BASE64 encode them. I could write a Perl script to BASE64 encode them and MIME-wrap them, but is there an existing tool for this? --