summaryrefslogtreecommitdiff
path: root/cpan/lib/Mail/Send.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-12-09 14:03:03 +0000
committerfukachan <fukachan>2002-12-09 14:03:03 +0000
commit8ea9d0cd18ab5db3e1e0982cab53c2d117e6491b (patch)
treee9575fb7ecd01cf0530faa32293445482273cbf3 /cpan/lib/Mail/Send.pm
parent25b723368eee41aae7bfc4138aead2227040402e (diff)
downloadfml8-MailTools-1-52.tar.gz
fml8-MailTools-1-52.tar.bz2
fml8-MailTools-1-52.zip
MailTools-1.52MailTools-1-52
Diffstat (limited to 'cpan/lib/Mail/Send.pm')
-rw-r--r--cpan/lib/Mail/Send.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpan/lib/Mail/Send.pm b/cpan/lib/Mail/Send.pm
index 346a2002..7af92296 100644
--- a/cpan/lib/Mail/Send.pm
+++ b/cpan/lib/Mail/Send.pm
@@ -8,7 +8,7 @@ use Carp;
use vars qw($VERSION);
require Mail::Mailer;
-$VERSION = "1.09";
+$VERSION = "1.52";
sub Version { $VERSION }
@@ -79,8 +79,11 @@ Mail::Send - Simple electronic mail interface
# Launch mailer and set headers. The filehandle returned
# by open() is an instance of the Mail::Mailer class.
+ # Arguments to the open() method are passed to the Mail::Mailer
+ # constructor.
- $fh = $msg->open;
+ $fh = $msg->open; # some default mailer
+ # $fh = $msg->open('sendmail'); # explicit
print $fh "Body of message";
@@ -96,15 +99,12 @@ Mail::Mailer
=head1 AUTHORS
-Maintained by Graham Barr E<lt>F<gbarr@pobox.com>E<gt>
+Maintained by Mark Overmeer <mailtools@overmeer.net>
Original code written by Tim Bunce E<lt>F<Tim.Bunce@ig.co.uk>E<gt>,
with a kick start from Graham Barr E<lt>F<gbarr@pobox.com>E<gt>. With
contributions by Gerard Hickey E<lt>F<hickey@ctron.com>E<gt>
-For support please contact comp.lang.perl.misc or Graham Barr
-E<lt>F<gbarr@pobox.com>E<gt>
-
=cut