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

use Email::Send; send SMTP => $message, 'smtp.example.com';

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.

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

Casey West, <casey@geeknest.com>.

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.