in reply to Mail Question
$subject = "Mail Message"; $to = "name@server.com"; open(MAIL, "|mail -s '$subject' $to"); print MAIL "message body" print MAIL "\n.\n"; # to quit close(MAIL);
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: Re: Mail Question
by Jonathan (Curate) on Apr 14, 2000 at 13:15 UTC | |
by Jonathan (Curate) on Apr 14, 2000 at 13:34 UTC |