#!/usr/local/bin/perl -w use Ultimail; my $um = Ultimail->new; $um->mailto('Larry Wall '); $um->mailfrom('Me '); $um->subject("The beauty of PerlMonks.org"); $um->body("PerlMonks.org is one of the most beautiful creation of all time (after Perl itself, of course :-)."); $um->send;