http://qs321.pair.com?node_id=391906


in reply to Re^2: Help sending with MIME::Lite
in thread Help sending with MIME::Lite

err remove Data    =>"Hey here is your file!\n" so it looks like:
sub mailme { my $msg = MIME::Lite->new( From => 'EDM01 <root@edm01.ohnet>', To => 'Derek Smith <dbsmith@ohiohealth.com>', Subject => "EDM Return Tapes" ); $msg->attach(Type =>'image/gif', #whatever the MIME ty +pe is Path =>"$scratchps", Filename =>'scratchps', Disposition => 'attachment' ); $msg->send; } if ( -s $scratchtps ) { &mailme; }


-Waswas