in reply to mime lite specific email
sub mailme { my ($to, $sub, $file_path) = @_; my $msg = MIME::Lite->new( From => 'MAILER-DAEMON root', To => $to, Subject => $sub, Type => 'multipart/related', ); $msg->attach( Type => 'TEXT', Data => "See attachment!", ); $msg->attach( Type => 'TEXT', Disposition => 'attachment', Path => $file_path, ); $msg->send; } mailme('operations@xxxx.com', $sub, $log);
|
|---|