http://qs1969.pair.com?node_id=391895


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

sweetness, it is attaching the file but not the actual data with the file??? so I have an email with an attachment but when I open the attachment it contains my Data => "Here are you files today"

Replies are listed 'Best First'.
Re^3: Help sending with MIME::Lite
by waswas-fng (Curate) on Sep 17, 2004 at 21:40 UTC
    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