#!/usr/bin/perl -w use MIME::Lite; #use strict; use warnings; my $mail_host = 'server name'; my $to="email"; my $from="fromServer"; my $subject="Reports"; my $attach = "daily_summary.csv"; my $body = "See attached reports.\n"; ### Create the multipart container my $msg = MIME::Lite->new ( From => $from, To => $to, Subject => $subject, Type =>'multipart/mixed' ) or die "Error creating multipart container: $!\n"; ### Add the text message part $msg->attach ( Type => 'TEXT', Data => $body ) or die "Error adding the text message part: $!\n"; ### Add the file $msg->attach ( Type => 'text/csv', Path => 'csv file path', Filename => $attach, Disposition => 'attachment' ) or die "Error adding $attach : $!\n"; ### Send the Message MIME::Lite->send('smtp', $mail_host, Timeout=>60); $msg->send;