Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
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()
, with some exceptions. username
and password
, if passed, are used to invoke Net::SMTP->auth()
for SASL authentication support. ssl
, if set to true, turns on SSL support by using Net::SMTP::SSL
.
SEE ALSO
Email::Send, Net::SMTP, Net::SMTP::SSL, 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.