#!/usr/bin/perl use strict; use warnings; use MIME::Lite; my $msg = MIME::Lite->new('your stuff here'); MIME::Lite->send( 'smtp', 'localhost', Debug => 1, SkipBad => 1 ); $msg->print(\*STDOUT);