Re: Email does not send attachment ...

2009-12-09 Thread Tony Esposito
Thanks to all.  I abandoned MIME::Lite in favor Mail::Sender and got it to work fine. From: Philip Potter To: "beginners@perl.org" Sent: Wed, 9 December, 2009 6:06:01 Subject: Re: Email does not send attachment ... 2009/12/9 Sneed, Sean P : >

Re: Email does not send attachment ...

2009-12-09 Thread Philip Potter
Without much more information to go on, though, it's hard to diagose the original problem. Phil > -Original Message- > From: Robert H [mailto:sigz...@gmail.com] > Sent: Tuesday, December 08, 2009 6:58 PM > To: beginners@perl.org > Subject: Re: Email does not send at

RE: Email does not send attachment ...

2009-12-09 Thread Sneed, Sean P
Try the paths like this C:\\my_file.log -Original Message- From: Robert H [mailto:sigz...@gmail.com] Sent: Tuesday, December 08, 2009 6:58 PM To: beginners@perl.org Subject: Re: Email does not send attachment ... On 12/8/09 3:56 PM, Tony Esposito wrote: > Hello, > > I

Re: Email does not send attachment ...

2009-12-09 Thread C.DeRykus
On Dec 8, 12:56 pm, tony1234567...@yahoo.co.uk (Tony Esposito) wrote: > Hello, > > I am using Perl 5.8 on WindowsXP and Windows Server 2003.  I can not get the > following attachment to arrive/attach even though I get the email with no > issues.  Any ideas? > > ... > >   MIME::Lite->send('smtp',

Re: Email does not send attachment ...

2009-12-09 Thread Dermot
2009/12/9 Robert H : > On 12/8/09 3:56 PM, Tony Esposito wrote: >> >> Hello, Hi >>   use MIME::Lite; >>  use Net::SMTP; >> >>  unless (-e 'C:/my_file.log'&&  -s 'C:/my_file.log' ) { print "file not >> found\n"; } >> >>   my $msg = MIME::Lite->new ( >>     From =>  'my_em...@yahoo.com', >>     To =

Re: Email does not send attachment ...

2009-12-08 Thread Robert H
On 12/8/09 3:56 PM, Tony Esposito wrote: Hello, I am using Perl 5.8 on WindowsXP and Windows Server 2003. I can not get the following attachment to arrive/attach even though I get the email with no issues. Any ideas? use MIME::Lite; use Net::SMTP; unless (-e 'C:/my_file.log'&& -s '

Re: Email does not send attachment ...

2009-12-08 Thread Robert H
On 12/8/09 3:56 PM, Tony Esposito wrote: Hello, I am using Perl 5.8 on WindowsXP and Windows Server 2003. I can not get the following attachment to arrive/attach even though I get the email with no issues. Any ideas? use MIME::Lite; use Net::SMTP; unless (-e 'C:/my_file.log'&& -s '

Email does not send attachment ...

2009-12-08 Thread Tony Esposito
Hello, I am using Perl 5.8 on WindowsXP and Windows Server 2003.  I can not get the following attachment to arrive/attach even though I get the email with no issues.  Any ideas?   use MIME::Lite;  use Net::SMTP;    unless (-e 'C:/my_file.log' && -s 'C:/my_file.log' ) { print "file not found\n"