in reply to Problems with MIME::Lite Attachements
Changing the initial instantiation to the above fixed the error!my $msg = MIME::Lite->new( 'From' => $param{'from'}, 'To' => $param{'email'}, 'Subject' => 'Your Report - '.$param{'startdate'}.' to '.$param{'e +nddate'}, 'Type' => 'mulitpart/mixed', 'Data' => 'Here is the Report requested for dates '.$param{'startdate'}. +' to '.$param{'enddate'}, );
|
|---|