#!/usr/bin/perl
#-------------------------------------------------------------------
# Send a mail to the new user.
#-------------------------------------------------------------------
$formail = "/usr/bin/formail" .
           " -I'To: niccolo\@apsoftware.it'" .
           " -I'From: info\@apinforma.com'" .
           " -I'Subject: Benvenuto'";
$sendmail = "/usr/lib/sendmail -t";

system ("/bin/echo 'La tua mailbox  pronta per ricevere messaggi!' | $formail | $sendmail");
