fmogavero has asked for the wisdom of the Perl Monks concerning the following question:
Can someone explain why? I am at work where they use Exchange for the e-amil system.
Here's the code:
require Mail::Send; $msg = new Mail::Send; $msg->to('fmogo@mninter.net'); $msg->subject('Send Mail Test'); $msg->delete($header); $fh = $msg->open or die "Couldn't open message: $!" ; print $fh "Just testing the Mail::Send package"; $fh->close;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mail::Send usage question
by wine (Scribe) on Jul 23, 2001 at 23:06 UTC | |
|
Re: Mail::Send usage question
by Agermain (Scribe) on Jul 24, 2001 at 00:32 UTC | |
|
Re: Mail::Send usage question
by theharry (Sexton) on Jul 23, 2001 at 22:59 UTC |