The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Email::Send::SMTP - Send Messages using SMTP

SYNOPSIS

  use Email::Send;

  send SMTP => $message, 'smtp.example.com';

DESCRIPTION

This mailer for Email::Send uses Net::SMTP to send a message with an SMTP server. The first invocation of send requires an SMTP server arguments. Subsequent calls will remember the the first setting until it is reset.

Any arguments passed to send will be passed to Net::SMTP->new(), except or username and password. If these arguments are passed, they're used to invoke Net::SMTP->auth() for SASL authentication support.

SEE ALSO

Email::Send, Net::SMTP, Email::Address, perl.

AUTHOR

Casey West, <casey@geeknest.com>.

COPYRIGHT

  Copyright (c) 2004 Casey West.  All rights reserved.
  This module is free software; you can redistribute it and/or modify it
  under the same terms as Perl itself.