RE: File attachments via Perl using Net::SMTP

2007-05-15 Thread Mark Funk
Yes it is possible. This is how I have done it in the past... try this... . . . use MIME::Lite; use Net::SMTP; ### Adjust sender, recipient and your SMTP mailhost my $from_address = 'Me'; my $to_address = $email_addy; my $mail_host = "$mail_host"; ### Adjust subject and body m

Re: File attachments via Perl using Net::SMTP

2007-05-15 Thread Mark Dootson
You need MIME::Lite; Dax Games wrote: > Is it possible to send SMTP mail with file attachments via Net::SMTP? if > not how can I do this. I am sending SMTP messages successfully but need > to send an attached text file as well. > > Thanks, > > Dax > _