Blame README

Packit 1e0463
NAME
Packit 1e0463
    Net::SMTP::SSL - SSL support for Net::SMTP
Packit 1e0463
Packit 1e0463
SYNOPSIS
Packit 1e0463
      use Net::SMTP::SSL;
Packit 1e0463
  
Packit 1e0463
      my $smtps = Net::SMTP::SSL->new("example.com", Port => 465);
Packit 1e0463
Packit 1e0463
DESCRIPTION
Packit 1e0463
    Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
Packit 1e0463
    network operations. Due to the nature of "Net::SMTP"'s "new" method, it
Packit 1e0463
    is not overridden to make use of a default port for the SMTPS service.
Packit 1e0463
    Perhaps future versions will be smart like that. Port 465 is usually
Packit 1e0463
    what you want, and it's not a pain to specify that.
Packit 1e0463
Packit 1e0463
    For interface documentation, please see Net::SMTP.
Packit 1e0463
Packit 1e0463
SEE ALSO
Packit 1e0463
    Net::SMTP, IO::Socket::SSL, perl.
Packit 1e0463
Packit 1e0463
AUTHOR
Packit 1e0463
    Casey West, <casey@geeknest.com>.
Packit 1e0463
Packit 1e0463
COPYRIGHT
Packit 1e0463
      Copyright (c) 2004 Casey West.  All rights reserved.
Packit 1e0463
      This module is free software; you can redistribute it and/or modify it
Packit 1e0463
      under the same terms as Perl itself.
Packit 1e0463