my $msg = MIME::Lite->new( From => 'abc.localdomain', To => 'abc@xyz.com', Subject => "Status", Type => 'multipart/mixed'); $msg->attach(Type => 'text/plain', Path => $OutputFileName, ReadNow => 1); $msg->attach(Type => 'text/plain', Path => $OutputFileName2, ReadNow => 1 ); $msg->send();