in reply to Email using perl

use Mail::Sendmail qw( sendmail ); sendmail( To => '...', From => '...', Subject => '...', Body => join( "\n", @array ) ) or die "Drat!"

Replies are listed 'Best First'.
Re^2: Email using perl
by edherrin (Initiate) on Jun 29, 2004 at 01:12 UTC
    Thank you