in reply to Re: email on WIN32
in thread email on WIN32

Hi Brent Here's what I'm doing (and it doesn't work). I'm feeling pretty stupid about this.
use Email::Stuff; use IO::All; $body = 'this is a test'; # Create and send the email in one shot Email::Stuff->from ('brejen@comcast.net' ) ->to ('ailithir@yahoo.com' ) ->bcc ('slyder2412@hotmail.com' ) ->text_body($body ) ->attach (io('test.doc')->all, filename => 'test.doc') ->using ('SMTP', Host => 'smtp.mail.yahoo.com') ->send;

Replies are listed 'Best First'.
Re^3: email on WIN32
by marto (Cardinal) on Oct 26, 2009 at 14:23 UTC
      sorry, of course 'it does not work' is not very helpful...unfortunately, there is no error printed so I have no idea what further information to include.